about summary refs log tree commit diff
path: root/IrcStates/ChannelUser.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-05-05 21:21:59 -0400
committerBen Harris <ben@tilde.team>2020-05-05 21:21:59 -0400
commit2c4e412c189ef54c181ffad96667232eaf80fcef (patch)
tree76e0f7f6c8803c5e82612c24487dfd932391bce3 /IrcStates/ChannelUser.cs
parent53da4d4c2a31d939c9ca92345ea935b7502b4e48 (diff)
Add more tests, ran resharper formatting tool
Diffstat (limited to 'IrcStates/ChannelUser.cs')
-rw-r--r--IrcStates/ChannelUser.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/IrcStates/ChannelUser.cs b/IrcStates/ChannelUser.cs
new file mode 100644
index 0000000..14f4280
--- /dev/null
+++ b/IrcStates/ChannelUser.cs
@@ -0,0 +1,9 @@
+using System.Collections.Generic;
+
+namespace IrcStates
+{
+    public class ChannelUser
+    {
+        public List<string> Modes { get; set; }
+    }
+}