2024-05-29 19:22:58 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.V1.Converter;
|
|
|
|
|
|
2024-06-08 19:16:57 +00:00
|
|
|
|
internal sealed class SkipConditionConverter() : EnumConverter<ESkipCondition>(Values)
|
2024-05-29 19:22:58 +00:00
|
|
|
|
{
|
|
|
|
|
private static readonly Dictionary<ESkipCondition, string> Values = new()
|
|
|
|
|
{
|
2024-06-01 16:46:57 +00:00
|
|
|
|
{ ESkipCondition.Never, "Never" },
|
2024-06-03 12:20:02 +00:00
|
|
|
|
{ ESkipCondition.FlyingLocked, "FlyingLocked" },
|
2024-05-29 19:22:58 +00:00
|
|
|
|
{ ESkipCondition.FlyingUnlocked, "FlyingUnlocked" },
|
|
|
|
|
};
|
|
|
|
|
}
|