ircsharp/IRCSharp.Tests/Tokenization/Data/SplitModel.cs

16 lines
307 B
C#
Raw Normal View History

2020-04-20 00:52:41 +00:00
using System.Collections.Generic;
2020-05-15 03:06:10 +00:00
namespace IRCTokens.Tests.Data
2020-04-20 00:52:41 +00:00
{
public class SplitModel
{
public List<Test> Tests { get; set; }
public class Test
{
public string Input { get; set; }
public JoinModel.Atoms Atoms { get; set; }
}
}
}