mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
13 lines
456 B
C#
13 lines
456 B
C#
namespace Observatory.Framework.Files.Journal.FleetCarrier;
|
|
|
|
public class CarrierTradeOrder : JournalBase
|
|
{
|
|
public ulong CarrierID { get; init; }
|
|
public bool BlackMarket { get; init; }
|
|
public string Commodity { get; init; }
|
|
public string Commodity_Localised { get; init; }
|
|
public int PurchaseOrder { get; init; }
|
|
public int SaleOrder { get; init; }
|
|
public bool CancelTrade { get; init; }
|
|
public int Price { get; init; }
|
|
} |