|
1234567891011121314 |
- 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;
- }
- }
|