Files
tbd-station-14/Content.Server/Cargo/ICargoBankAccount.cs
2020-06-12 18:31:57 +02:00

13 lines
231 B
C#

using System;
namespace Content.Server.Cargo
{
public interface ICargoBankAccount
{
int Id { get; }
string Name { get; }
int Balance { get; }
public event Action OnBalanceChange;
}
}