about summary refs log tree commit diff
path: root/IrcTokens/Tests/Data/JoinModel.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-04-19 20:52:41 -0400
committerBen Harris <ben@tilde.team>2020-04-19 23:14:41 -0400
commit616abc70303990fbf8096fc6ada5fac100a6c66a (patch)
tree08df1ec5e896be6a18e6a39630ffc2fec8118297 /IrcTokens/Tests/Data/JoinModel.cs
init
Diffstat (limited to 'IrcTokens/Tests/Data/JoinModel.cs')
-rw-r--r--IrcTokens/Tests/Data/JoinModel.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/IrcTokens/Tests/Data/JoinModel.cs b/IrcTokens/Tests/Data/JoinModel.cs
new file mode 100644
index 0000000..b016fc3
--- /dev/null
+++ b/IrcTokens/Tests/Data/JoinModel.cs
@@ -0,0 +1,31 @@
+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; }
+        }
+    }
+}