Files
tbd-station-14/Content.Server/Cargo/ICargoBankAccount.cs
2022-05-13 17:59:03 +10:00

11 lines
216 B
C#

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