using System; using System.Collections.Generic; using System.Text; namespace reallife_gamemode.Server.Util { public interface IBankAccount { int Balance { get; set; } } }