Questionable/Questionable.Model/V1/EJumpType.cs

12 lines
219 B
C#
Raw Normal View History

2024-07-24 18:47:08 +00:00
using System.Text.Json.Serialization;
using Questionable.Model.V1.Converter;
namespace Questionable.Model.V1;
[JsonConverter(typeof(JumpTypeConverter))]
public enum EJumpType
{
SingleJump,
RepeatedJumps,
}