IRC parsing, tokenization, and state handling in C#
at tunit 14 lines 348 B view raw
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}