Added ChannelTypes documentation

This commit is contained in:
Brandon Smith
2015-08-21 18:17:04 -03:00
parent b372f1695e
commit 766b19bfd9

View File

@@ -2,7 +2,9 @@
{ {
public static class ChannelTypes public static class ChannelTypes
{ {
/// <summary> A text-only channel. </summary>
public const string Text = "text"; public const string Text = "text";
/// <summary> A voice-only channel. </summary>
public const string Voice = "voice"; public const string Voice = "voice";
} }
} }