2024-05-29 19:22:58 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.V1.Converter;
|
|
|
|
|
|
2024-07-27 13:39:47 +00:00
|
|
|
|
public sealed class SkipConditionConverter() : EnumConverter<EExtraSkipCondition>(Values)
|
2024-05-29 19:22:58 +00:00
|
|
|
|
{
|
2024-07-27 13:39:47 +00:00
|
|
|
|
private static readonly Dictionary<EExtraSkipCondition, string> Values = new()
|
2024-05-29 19:22:58 +00:00
|
|
|
|
{
|
2024-07-27 13:39:47 +00:00
|
|
|
|
{ EExtraSkipCondition.WakingSandsMainArea, "WakingSandsMainArea" },
|
2024-05-29 19:22:58 +00:00
|
|
|
|
};
|
|
|
|
|
}
|