21 lines
594 B
C#
Raw Normal View History

2024-05-26 15:43:33 +02:00
using System.Collections.Generic;
using System.Numerics;
using System.Text.Json.Serialization;
using Questionable.Model.V1.Converter;
2024-05-25 23:51:37 +02:00
namespace Questionable.Model.V1;
public class QuestStep
{
2024-05-26 15:43:33 +02:00
[JsonConverter(typeof(InteractionTypeConverter))]
public EInteractionType InteractionType { get; set; }
2024-05-25 23:51:37 +02:00
public ulong? DataId { get; set; }
public Vector3 Position { get; set; }
public ushort TerritoryId { get; set; }
2024-05-26 15:43:33 +02:00
public bool Disabled { get; set; }
[JsonConverter(typeof(AethernetShortcutConverter))]
public AethernetShortcut AethernetShortcut { get; set; }
2024-05-25 23:51:37 +02:00
}