LogEntry.cs 239 B

123456789101112
  1. namespace InABox.Wpf.Console;
  2. public class LogEntry : PropertyChangedBase
  3. {
  4. public string DateTime { get; set; }
  5. public string Type { get; set; }
  6. public string User { get; set; }
  7. public string Message { get; set; }
  8. }