namespace Discord { /// /// Determines whether the object is mentionable or not. /// public interface IMentionable { /// /// Returns a special string used to mention this object. /// /// /// A string that is recognized by Discord as a mention (e.g. <@168693960628371456>). /// string Mention { get; } } }