about summary refs log blame commit diff
path: root/IRCSharp.Tests/Tokenization/Data/SplitModel.cs
blob: 1856dd9fc8889c8672b8536c918c5b180a7f093d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

                                    
                                          











                                                      
using System.Collections.Generic;

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

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