about summary refs log tree commit diff
path: root/IrcTokens/Tests/Data/JoinModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IrcTokens/Tests/Data/JoinModel.cs')
-rw-r--r--IrcTokens/Tests/Data/JoinModel.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/IrcTokens/Tests/Data/JoinModel.cs b/IrcTokens/Tests/Data/JoinModel.cs
deleted file mode 100644
index 2c08e58..0000000
--- a/IrcTokens/Tests/Data/JoinModel.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-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; }
-        }
-    }
-}