mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
10 lines
326 B
C#
10 lines
326 B
C#
namespace Observatory.Framework.Files.Journal.FleetCarrier;
|
|
|
|
public class CarrierBankTransfer : JournalBase
|
|
{
|
|
public ulong CarrierID { get; init; }
|
|
public long Deposit { get; init; }
|
|
public long Withdraw { get; init; }
|
|
public long PlayerBalance { get; init; }
|
|
public long CarrierBalance { get; init; }
|
|
} |