2024-05-29 21:22:58 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Questionable.Model.V1.Converter;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(SkipConditionConverter))]
|
2024-06-14 11:37:33 +02:00
|
|
|
|
public enum ESkipCondition
|
2024-05-29 21:22:58 +02:00
|
|
|
|
{
|
|
|
|
|
None,
|
2024-06-01 18:46:57 +02:00
|
|
|
|
Never,
|
2024-06-03 14:20:02 +02:00
|
|
|
|
FlyingLocked,
|
2024-05-29 21:22:58 +02:00
|
|
|
|
FlyingUnlocked,
|
2024-06-15 14:12:32 +02:00
|
|
|
|
ChocoboUnlocked,
|
|
|
|
|
AetheryteShortcutIfInSameTerritory,
|
2024-05-29 21:22:58 +02:00
|
|
|
|
}
|