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