15 lines
523 B
C#
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;
|
|
}
|
|
}
|