forked from liza/Questionable
13 lines
352 B
C#
13 lines
352 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Questionable.Model.V1.Converter;
|
|
|
|
public sealed class QuestWorkModeConverter() : EnumConverter<EQuestWorkMode>(Values)
|
|
{
|
|
private static readonly Dictionary<EQuestWorkMode, string> Values = new()
|
|
{
|
|
{ EQuestWorkMode.Bitwise, "Bitwise" },
|
|
{ EQuestWorkMode.Exact, "Exact" },
|
|
};
|
|
}
|