about summary refs log tree commit diff
path: root/IrcTokens/Tests/Data/JoinModel.cs
blob: b016fc3ccfe8277765cc27d214920bd6ca7edcc6 (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
31
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; }
        }
    }
}