about summary refs log tree commit diff
path: root/IRCTokens/Tests/Data/JoinModel.cs
blob: e54f4cfb35b1b2c7475a9566f34b9aa8f177c426 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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; }
        }
    }
}