IRC parsing, tokenization, and state handling in C#
1// ReSharper disable CollectionNeverUpdated.Global
2// ReSharper disable ClassNeverInstantiated.Global
3namespace IRCSharp.Tests.Tokenization.Data;
4
5public class SplitModel
6{
7 public List<Test> Tests { get; set; }
8
9 public class Test
10 {
11 public string Input { get; set; }
12 public JoinModel.Atoms Atoms { get; set; }
13 }
14}