about summary refs log tree commit diff
path: root/IrcStates/Emit.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IrcStates/Emit.cs')
-rw-r--r--IrcStates/Emit.cs19
1 files changed, 18 insertions, 1 deletions
diff --git a/IrcStates/Emit.cs b/IrcStates/Emit.cs
index 7fc41ae..9af7b62 100644
--- a/IrcStates/Emit.cs
+++ b/IrcStates/Emit.cs
@@ -1,6 +1,23 @@
-namespace IrcStates
+using System.Collections.Generic;
+
+namespace IrcStates
 {
     public class Emit
     {
+        public string Command { get; set; }
+        public string Subcommand { get; set; }
+        public string Text { get; set; }
+        public List<string> Tokens { get; set; }
+        public bool Finished { get; set; }
+        public bool SelfSource { get; set; }
+        public bool SelfTarget { get; set; }
+        public Tests.User User { get; set; }
+        public Tests.User UserSource { get; set; }
+        public Tests.User UserTarget { get; set; }
+        public List<Tests.User> Users { get; set; }
+        public Tests.Channel Channel { get; set; }
+        public Tests.Channel ChannelSource { get; set; }
+        public Tests.Channel ChannelTarget { get; set; }
+        public string Target { get; set; }
     }
 }