2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-03 01:03:41 -04:00
Files
pulsar/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierBuy.cs
2021-11-22 10:37:50 -03:30

14 lines
431 B
C#

namespace Observatory.Framework.Files.Journal
{
public class CarrierBuy : JournalBase
{
public long BoughtAtMarket { get; init; }
public ulong SystemAddress { get; init; }
public ulong CarrierID { get; init; }
public string Location { get; init; }
public long Price { get; init; }
public string Variant { get; init; }
public string Callsign { get; init; }
}
}