about summary refs log tree commit diff
path: root/IrcStates/ChannelUser.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/ChannelUser.cs
parent304df7805b9925c2edd992fd4177eef80197f807 (diff)
rename Irc to IRC
Diffstat (limited to 'IrcStates/ChannelUser.cs')
-rw-r--r--IrcStates/ChannelUser.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/IrcStates/ChannelUser.cs b/IrcStates/ChannelUser.cs
deleted file mode 100644
index fab881c..0000000
--- a/IrcStates/ChannelUser.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System.Collections.Generic;
-
-namespace IrcStates
-{
-    public class ChannelUser
-    {
-        public ChannelUser()
-        {
-            Modes = new List<string>();
-        }
-
-        public List<string> Modes { get; set; }
-
-        protected bool Equals(ChannelUser other)
-        {
-            return other != null && Equals(Modes, other.Modes);
-        }
-
-        public override bool Equals(object obj)
-        {
-            if (ReferenceEquals(null, obj)) return false;
-            if (ReferenceEquals(this, obj)) return true;
-            if (obj.GetType() != GetType()) return false;
-            return Equals((ChannelUser) obj);
-        }
-
-        public override int GetHashCode()
-        {
-            return Modes != null ? Modes.GetHashCode() : 0;
-        }
-    }
-}