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