13 lines
386 B
C#
13 lines
386 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Questionable.Model.V1.Converter;
|
|||
|
|
|||
|
public sealed class LockedSkipConditionConverter() : EnumConverter<ELockedSkipCondition>(Values)
|
|||
|
{
|
|||
|
private static readonly Dictionary<ELockedSkipCondition, string> Values = new()
|
|||
|
{
|
|||
|
{ ELockedSkipCondition.Locked, "Locked" },
|
|||
|
{ ELockedSkipCondition.Unlocked, "Unlocked" },
|
|||
|
};
|
|||
|
}
|