Added UserStatus string enum

This commit is contained in:
Brandon Smith
2015-09-05 15:59:42 -03:00
parent 6a9eb0815e
commit 5b30117a7a

View File

@@ -0,0 +1,12 @@
namespace Discord
{
public static class UserStatus
{
/// <summary> User is currently online and active. </summary>
public const string Online = "online";
/// <summary> User is currently online but inactive. </summary>
public const string Away = "away";
/// <summary> User is offline. </summary>
public const string Offline = "offline";
}
}