2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

more id fields changed to uint64

This commit is contained in:
Xjph 2021-11-25 17:20:27 -03:30
parent 9fd9f4dd03
commit d5e73d7414
8 changed files with 8 additions and 8 deletions

View File

@ -10,6 +10,6 @@
public int Stolen { get; init; } public int Stolen { get; init; }
public long? MissionID { get; init; } public ulong? MissionID { get; init; }
} }
} }

View File

@ -5,7 +5,7 @@ namespace Observatory.Framework.Files.ParameterTypes
public class EngineerType public class EngineerType
{ {
public string Engineer { get; init; } public string Engineer { get; init; }
public int EngineerID { get; init; } public ulong EngineerID { get; init; }
public int Rank { get; init; } public int Rank { get; init; }
public int RankProgress { get; init; } public int RankProgress { get; init; }
[JsonConverter(typeof(JsonStringEnumConverter))] [JsonConverter(typeof(JsonStringEnumConverter))]

View File

@ -2,7 +2,7 @@
{ {
public class MarketItem public class MarketItem
{ {
public long id { get; init; } public ulong id { get; init; }
public string Name { get; init; } public string Name { get; init; }
public string Name_Localised { get; init; } public string Name_Localised { get; init; }
public string Category { get; init; } public string Category { get; init; }

View File

@ -2,7 +2,7 @@
{ {
public class Mission public class Mission
{ {
public long MissionID { get; init; } public ulong MissionID { get; init; }
public string Name { get; init; } public string Name { get; init; }

View File

@ -2,7 +2,7 @@
{ {
public class OutfittingModule public class OutfittingModule
{ {
public int id { get; init; } public ulong id { get; init; }
public string Name { get; init; } public string Name { get; init; }
public int BuyPrice { get; init; } public int BuyPrice { get; init; }
} }

View File

@ -2,7 +2,7 @@
{ {
public class Passenger public class Passenger
{ {
public long MissionID { get; init; } public ulong MissionID { get; init; }
public string Type { get; init; } public string Type { get; init; }

View File

@ -5,7 +5,7 @@
public string Name { get; init; } public string Name { get; init; }
public string Name_Localised { get; init; } public string Name_Localised { get; init; }
public string StarSystem { get; init; } public string StarSystem { get; init; }
public long MarketID { get; init; } public ulong MarketID { get; init; }
public int StorageSlot { get; init; } public int StorageSlot { get; init; }
public long TransferCost { get; init; } public long TransferCost { get; init; }
public long TransferTime { get; init; } public long TransferTime { get; init; }

View File

@ -9,7 +9,7 @@
public bool Hot { get; init; } public bool Hot { get; init; }
public bool InTransit { get; init; } public bool InTransit { get; init; }
public string StarSystem { get; init; } public string StarSystem { get; init; }
public long ShipMarketID { get; init; } public ulong ShipMarketID { get; init; }
public long TransferPrice { get; init; } public long TransferPrice { get; init; }
public long TransferTime { get; init; } public long TransferTime { get; init; }
} }