From 21f1e95fb8e935134a969bc3d729964d8d2aadfa Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 14 May 2020 23:06:10 -0400 Subject: rename Irc to IRC --- IRCTokens/Tests/Data/JoinModel.cs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 IRCTokens/Tests/Data/JoinModel.cs (limited to 'IRCTokens/Tests/Data/JoinModel.cs') diff --git a/IRCTokens/Tests/Data/JoinModel.cs b/IRCTokens/Tests/Data/JoinModel.cs new file mode 100644 index 0000000..e54f4cf --- /dev/null +++ b/IRCTokens/Tests/Data/JoinModel.cs @@ -0,0 +1,30 @@ +using System.Collections.Generic; +using YamlDotNet.Serialization; + +namespace IRCTokens.Tests.Data +{ + public class JoinModel + { + public List Tests { get; set; } + + public class Test + { + [YamlMember(Alias = "desc")] public string Description { get; set; } + + public Atoms Atoms { get; set; } + + public List Matches { get; set; } + } + + public class Atoms + { + public Dictionary Tags { get; set; } + + public string Source { get; set; } + + public string Verb { get; set; } + + public List Params { get; set; } + } + } +} -- cgit 1.4.1