Browse Source

Added Mention.Everyone

tags/docs-0.9
RogueException 9 years ago
parent
commit
942f59c817
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      src/Discord.Net/Helpers/Mention.cs

+ 4
- 0
src/Discord.Net/Helpers/Mention.cs View File

@@ -18,5 +18,9 @@
/// <summary> Returns the string used to create a channel mention. </summary>
public static string Channel(string channelId)
=> $"<#{channelId}>";

/// <summary> Returns the string used to create a channel mention. </summary>
public static string Everyone()
=> $"@everyone";
}
}

Loading…
Cancel
Save