From 21f1e95fb8e935134a969bc3d729964d8d2aadfa Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 14 May 2020 23:06:10 -0400 Subject: rename Irc to IRC --- IRCStates/Commands.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 IRCStates/Commands.cs (limited to 'IRCStates/Commands.cs') diff --git a/IRCStates/Commands.cs b/IRCStates/Commands.cs new file mode 100644 index 0000000..d9654ec --- /dev/null +++ b/IRCStates/Commands.cs @@ -0,0 +1,22 @@ +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"; + } +} -- cgit 1.4.1