using System.Collections.Generic; namespace Questionable.Model.V1.Converter; public sealed class SkipConditionConverter() : EnumConverter(Values) { private static readonly Dictionary Values = new() { { ESkipCondition.Never, "Never" }, { ESkipCondition.FlyingLocked, "FlyingLocked" }, { ESkipCondition.FlyingUnlocked, "FlyingUnlocked" }, }; }