IRC parsing, tokenization, and state handling in C#
at ircrobots 11 lines 209 B view raw
1using IRCTokens; 2 3namespace IRCRobots 4{ 5 public class SentLine 6 { 7 public int Id { get; set; } 8 public SendPriority Priority { get; set; } 9 public Line Line { get; set; } 10 } 11}