about summary refs log tree commit diff
path: root/IRCStates/Commands.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-05-14 23:06:10 -0400
committerBen Harris <ben@tilde.team>2020-05-14 23:17:47 -0400
commit21f1e95fb8e935134a969bc3d729964d8d2aadfa (patch)
treedb2be27e9b5ac48e19f92b56cbad68ab59f7099e /IRCStates/Commands.cs
parent304df7805b9925c2edd992fd4177eef80197f807 (diff)
rename Irc to IRC
Diffstat (limited to 'IRCStates/Commands.cs')
-rw-r--r--IRCStates/Commands.cs22
1 files changed, 22 insertions, 0 deletions
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";
+    }
+}