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 e54f4cf..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; }
-        }
-    }
-}