about summary refs log tree commit diff
path: root/IRCSharp.Tests/Tokenization/Data/JoinModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IRCSharp.Tests/Tokenization/Data/JoinModel.cs')
-rw-r--r--IRCSharp.Tests/Tokenization/Data/JoinModel.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/IRCSharp.Tests/Tokenization/Data/JoinModel.cs b/IRCSharp.Tests/Tokenization/Data/JoinModel.cs
new file mode 100644
index 0000000..e54f4cf
--- /dev/null
+++ b/IRCSharp.Tests/Tokenization/Data/JoinModel.cs
@@ -0,0 +1,30 @@
+using System.Collections.Generic;
+using YamlDotNet.Serialization;
+
+namespace IRCTokens.Tests.Data
+{
+    public class JoinModel
+    {
+        public List<Test> Tests { get; set; }
+
+        public class Test
+        {
+            [YamlMember(Alias = "desc")] public string Description { get; set; }
+
+            public Atoms Atoms { get; set; }
+
+            public List<string> Matches { get; set; }
+        }
+
+        public class Atoms
+        {
+            public Dictionary<string, string> Tags { get; set; }
+
+            public string Source { get; set; }
+
+            public string Verb { get; set; }
+
+            public List<string> Params { get; set; }
+        }
+    }
+}