muffin v7.5.6
This commit is contained in:
parent
6266f9e6b7
commit
addf2d530f
619 changed files with 264792 additions and 446022 deletions
17
SmartNav.Model/SmartNav.Model.Navigation/TaxiStandEntry.cs
Normal file
17
SmartNav.Model/SmartNav.Model.Navigation/TaxiStandEntry.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using System.Numerics;
|
||||
using System.Text.Json.Serialization;
|
||||
using SmartNav.Model.Converter;
|
||||
|
||||
namespace SmartNav.Model.Navigation;
|
||||
|
||||
public sealed class TaxiStandEntry
|
||||
{
|
||||
public uint Id { get; set; }
|
||||
|
||||
public uint ChocoboTaxiStandId { get; set; }
|
||||
|
||||
public ushort TerritoryId { get; set; }
|
||||
|
||||
[JsonConverter(typeof(VectorConverter))]
|
||||
public Vector3 Location { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue