about summary refs log blame commit diff
path: root/IrcStates/Commands.cs
blob: b5bc35836780a3f65674dcdcc74c34d11c231d2c (plain) (tree)





















                                                
namespace IrcStates
{
    public static class Commands
    {
        public const string Nick = "NICK";
        public const string Join = "JOIN";
        public const string Mode = "MODE";
        public const string Part = "PART";
        public const string Kick = "KICK";
        public const string Quit = "QUIT";
        public const string Error = "ERROR";
        public const string Topic = "TOPIC";
        public const string Privmsg = "PRIVMSG";
        public const string Notice = "NOTICE";
        public const string Tagmsg = "TAGMSG";
        public const string Chghost = "CHGHOST";
        public const string Setname = "SETNAME";
        public const string Away = "AWAY";
        public const string Account = "ACCOUNT";
        public const string Cap = "CAP";
    }
}