Questionable/Questionable.Model/Questing/Converter/SkipConditionConverter.cs

13 lines
397 B
C#
Raw Normal View History

using System.Collections.Generic;
2024-08-02 16:30:21 +00:00
using Questionable.Model.Common.Converter;
2024-08-02 16:30:21 +00:00
namespace Questionable.Model.Questing.Converter;
2024-07-27 13:39:47 +00:00
public sealed class SkipConditionConverter() : EnumConverter<EExtraSkipCondition>(Values)
{
2024-07-27 13:39:47 +00:00
private static readonly Dictionary<EExtraSkipCondition, string> Values = new()
{
2024-07-27 13:39:47 +00:00
{ EExtraSkipCondition.WakingSandsMainArea, "WakingSandsMainArea" },
};
}