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.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/IrcStates/Emit.cs b/IrcStates/Emit.cs
deleted file mode 100644
index 9ca9cb5..0000000
--- a/IrcStates/Emit.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-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 Self { get; set; }
-        public bool SelfSource { get; set; }
-        public bool SelfTarget { get; set; }
-        public User User { get; set; }
-        public User UserSource { get; set; }
-        public User UserTarget { get; set; }
-        public List<User> Users { get; set; }
-        public Channel Channel { get; set; }
-        public Channel ChannelSource { get; set; }
-        public Channel ChannelTarget { get; set; }
-        public string Target { get; set; }
-    }
-}