2024-07-27 13:39:47 +00:00
|
|
|
|
using System.Text.Json.Serialization;
|
2024-08-02 16:30:21 +00:00
|
|
|
|
using Questionable.Model.Questing.Converter;
|
2024-07-27 13:39:47 +00:00
|
|
|
|
|
2024-08-02 16:30:21 +00:00
|
|
|
|
namespace Questionable.Model.Questing;
|
2024-07-27 13:39:47 +00:00
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(LockedSkipConditionConverter))]
|
|
|
|
|
public enum ELockedSkipCondition
|
|
|
|
|
{
|
|
|
|
|
Locked,
|
|
|
|
|
Unlocked,
|
|
|
|
|
}
|