about summary refs log tree commit diff
path: root/IrcStates/Commands.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-05-13 14:21:49 -0400
committerBen Harris <ben@tilde.team>2020-05-13 14:30:12 -0400
commitb93174070a0964f254781686ed2390855127ad7a (patch)
treef75f8bbb3949be13ac165b670bbb9ef44a7a2909 /IrcStates/Commands.cs
parentba63e42be47fe1021e727347477a7df5779d23f7 (diff)
Start adding some line handlers
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..b5bc358
--- /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";
+    }
+}