forked from liza/Questionable
12 lines
323 B
C#
12 lines
323 B
C#
|
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" },
|
|||
|
};
|
|||
|
}
|