14 lines
401 B
C#
Raw Normal View History

using System.Collections.Generic;
2024-08-02 18:30:21 +02:00
using Questionable.Model.Common.Converter;
2024-08-02 18:30:21 +02:00
namespace Questionable.Model.Questing.Converter;
public sealed class QuestWorkModeConverter() : EnumConverter<EQuestWorkMode>(Values)
{
private static readonly Dictionary<EQuestWorkMode, string> Values = new()
{
{ EQuestWorkMode.Bitwise, "Bitwise" },
{ EQuestWorkMode.Exact, "Exact" },
};
}