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