Index: src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageRowData.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageRowData.cs (.../MessageRowData.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageRowData.cs (.../MessageRowData.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -4,48 +4,32 @@ { internal class MessageRowData { - private string exception; - private string image; - private string message; - private string source; - private DateTime time; - public MessageRowData(string levelImage, DateTime timestamp, string source, string message, string exception) { - this.exception = exception; - image = levelImage; - this.message = message; - this.source = source; - time = timestamp; + Exception = exception; + Image = levelImage; + Message = message; + Source = source; + Time = timestamp; } - public string Image - { - get { return image ; } + public string Image { get; private set; // set { image = value; } } - public DateTime Time - { - get { return time; } + public DateTime Time { get; private set; // set { time = value; } } - public string Source - { - get { return source; } + public string Source { get; private set; // set { source = value; } } - public string Message - { - get { return message; } + public string Message { get; private set; // set { message = value; } } - public string Exception - { - get { return exception; } + public string Exception { get; private set; // set { exception = value; } } }