forked from aly/qstbak
14 lines
255 B
C#
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; }
|
|
}
|