mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
12 lines
348 B
C#
12 lines
348 B
C#
namespace Observatory.Framework.Files.Journal
|
|
{
|
|
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; }
|
|
}
|
|
}
|