LogItem.cs 560 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EPD.Data
  7. {
  8. public class LogItem
  9. {
  10. public string Time { get; set; }
  11. public string Sender { get; set; }
  12. public string Type { get; set; }
  13. public string Message { get; set; }
  14. public LogItem(string time, string sender, string type, string message)
  15. {
  16. Time = time;
  17. Sender = sender;
  18. Type = type;
  19. Message = message;
  20. }
  21. }
  22. }