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}