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:
parent
9fd9f4dd03
commit
d5e73d7414
@ -10,6 +10,6 @@
|
|||||||
|
|
||||||
public int Stolen { get; init; }
|
public int Stolen { get; init; }
|
||||||
|
|
||||||
public long? MissionID { get; init; }
|
public ulong? MissionID { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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))]
|
||||||
|
@ -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; }
|
||||||
|
@ -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; }
|
||||||
|
|
||||||
|
@ -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; }
|
||||||
}
|
}
|
||||||
|
@ -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; }
|
||||||
|
|
||||||
|
@ -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; }
|
||||||
|
@ -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; }
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user