Trace view model was changed
This commit is contained in:
20
StructureHelperCommon/Models/Loggers/StringLogEntry.cs
Normal file
20
StructureHelperCommon/Models/Loggers/StringLogEntry.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models
|
||||
{
|
||||
public class StringLogEntry : ITraceLoggerEntry
|
||||
{
|
||||
public DateTime TimeStamp { get;}
|
||||
public string Message { get; set; }
|
||||
public int Priority { get; set; }
|
||||
|
||||
public StringLogEntry()
|
||||
{
|
||||
TimeStamp = DateTime.Now;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user