13 lines
231 B
C#
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;
|
|
}
|
|
}
|