Questionable/Questionable/Model/V1/Converter/SkipConditionConverter.cs

12 lines
323 B
C#
Raw Normal View History

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