| using System;namespace InABox.Wpf.Console;public class LogEntry : PropertyChangedBase{    public string DateTime { get; set; }    public string Type { get; set; }    public string User { get; set; }    public string Message { get; set; }    public Guid Transaction { get; set; }}
 |