You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
466 B
17 lines
466 B
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; }
|
|
}
|
|
}
|