You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Discord
- {
- /// <summary>
- /// Determines whether the object is mentionable or not.
- /// </summary>
- public interface IMentionable
- {
- /// <summary>
- /// Returns a special string used to mention this object.
- /// </summary>
- /// <returns>
- /// A string that is recognized by Discord as a mention (e.g. <@168693960628371456>).
- /// </returns>
- string Mention { get; }
- }
- }
|