Questionable/Questionable.Model/Questing/EQuestWorkMode.cs

12 lines
230 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-08-02 16:30:21 +00:00
using Questionable.Model.Questing.Converter;
2024-08-02 16:30:21 +00:00
namespace Questionable.Model.Questing;
[JsonConverter(typeof(QuestWorkModeConverter))]
public enum EQuestWorkMode
{
Bitwise,
Exact,
}