19 lines
440 B
C#
19 lines
440 B
C#
using System.Numerics;
|
|
using System.Text.Json.Serialization;
|
|
using SmartNav.Model.Converter;
|
|
|
|
namespace SmartNav.Model.Navigation;
|
|
|
|
public sealed class TeleportTicketEntry
|
|
{
|
|
public uint ItemId { get; set; }
|
|
|
|
public string ItemName { get; set; } = string.Empty;
|
|
|
|
public uint ItemActionType { get; set; }
|
|
|
|
public ushort DestTerritoryId { get; set; }
|
|
|
|
[JsonConverter(typeof(VectorConverter))]
|
|
public Vector3 DestPosition { get; set; }
|
|
}
|