namespace SharpChat {
public enum UserStatus : int {
Unknown = 0,
Online = 1,
Away = 2,
Offline = 3,
}