using System; namespace Discord { public interface IEntity where TId : IEquatable { ///// Gets the IDiscordClient that created this object. //IDiscordClient Discord { get; } /// /// Gets the unique identifier for this object. /// TId Id { get; } } }