qstbak/Questionable.Model/Questionable.Model.Questing/EQuestWorkMode.cs
2025-10-09 07:47:19 +10:00

11 lines
220 B
C#

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