1
0
Fork 0
Questionable/Questionable.Model/V1/EQuestWorkMode.cs

12 lines
218 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
using Questionable.Model.V1.Converter;
namespace Questionable.Model.V1;
[JsonConverter(typeof(QuestWorkModeConverter))]
public enum EQuestWorkMode
{
Bitwise,
Exact,
}