namespace axXez.TS3.Protocol { /// Identifies an entity that has a numeric ID and a display name. public interface INamedEntity { /// Numeric ID of the entity. int ID { get; } /// Display name of the entity. string Name { get; } } }