Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/Structures/Channels/ChannelType.cs
2017-05-14 14:02:51 +02:00

13 lines
212 B
C#

namespace Maki.Structures.Channels
{
/// <summary>
/// Discord API Channel type
/// </summary>
internal enum ChannelType
{
Text = 0,
Private = 1,
Voice = 2,
}
}