Files
Discord.Net/ref/Format.cs
2016-02-24 19:36:18 -04:00

15 lines
523 B
C#

namespace Discord
{
public static class Format
{
public static string Escape(string text) => null;
public static string Bold(string text, bool escape = true) => null;
public static string Italics(string text, bool escape = true) => null;
public static string Underline(string text, bool escape = true) => null;
public static string Strikeout(string text, bool escape = true) => null;
public static string Code(string text, string language = null) => null;
}
}