about summary refs log tree commit diff
path: root/IRCTokens/Tests/Data/SplitModel.cs
blob: 5386326adb58ac8400e4e8a9199d08c8eb5e4a66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.Collections.Generic;

namespace IRCTokens.Tests.Data
{
    public class SplitModel
    {
        public List<Test> Tests { get; set; }

        public class Test
        {
            public string Input { get; set; }
            public JoinModel.Atoms Atoms { get; set; }
        }
    }
}