namespace DSALib.Characters { public class Entity { public string Name { get; set; } public override string ToString() { return this.Name; } } }