about summary refs log blame commit diff
path: root/IRCSharp.Tests/Tokenization/Data/JoinModel.cs
blob: e54f4cfb35b1b2c7475a9566f34b9aa8f177c426 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                    
                              






                                             
                                                                                

















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