2024-05-29 19:22:58 +00:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Questionable.Model.V1.Converter;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(SkipConditionConverter))]
|
|
|
|
|
public enum ESkipCondition
|
|
|
|
|
{
|
|
|
|
|
None,
|
2024-06-01 16:46:57 +00:00
|
|
|
|
Never,
|
2024-05-29 19:22:58 +00:00
|
|
|
|
FlyingUnlocked,
|
|
|
|
|
}
|