Added Mention.Everyone

This commit is contained in:
RogueException
2015-10-18 09:25:40 -03:00
parent 712ac2343a
commit 942f59c817

View File

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