qstbak/SmartNav.Model/SmartNav.Model.Navigation/DerivedArrivalEntry.cs
2026-08-17 20:27:25 +10:00

14 lines
255 B
C#

namespace SmartNav.Model.Navigation;
public sealed class DerivedArrivalEntry
{
public uint PopRangeId { get; set; }
public ushort TerritoryId { get; set; }
public float X { get; set; }
public float Y { get; set; }
public float Z { get; set; }
}