LogEntry.cs 297 B

12345678910111213141516
  1. using System;
  2. namespace InABox.Wpf.Console;
  3. public class LogEntry : PropertyChangedBase
  4. {
  5. public string DateTime { get; set; }
  6. public string Type { get; set; }
  7. public string User { get; set; }
  8. public string Message { get; set; }
  9. public Guid Transaction { get; set; }
  10. }