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

12 lines
239 B
C#
Raw Normal View History

2024-04-23 22:17:27 +00:00
namespace IRCSharp.Tests.Tokens.Data;
2020-04-20 00:52:41 +00:00
2024-03-26 20:10:54 +00:00
public class SplitModel
2020-04-20 00:52:41 +00:00
{
2024-03-26 20:10:54 +00:00
public List<Test> Tests { get; set; }
2020-04-20 00:52:41 +00:00
2024-03-26 20:10:54 +00:00
public class Test
{
public string Input { get; set; }
public JoinModel.Atoms Atoms { get; set; }
2020-04-20 00:52:41 +00:00
}
2024-03-26 20:10:54 +00:00
}