FastGithub/FastGithub.UI/UdpLog.cs
2021-11-02 14:14:57 +08:00

19 lines
382 B
C#

using System;
using System.Windows.Media;
namespace FastGithub.UI
{
public class UdpLog
{
public DateTime Timestamp { get; set; }
public string Level { get; set; }
public string Message { get; set; }
public string SourceContext { get; set; }
public string Color => this.Level == "Information" ? "#333" : "IndianRed";
}
}