Added log view for logging.net. Logging.net injection for microsofts logger. Host system data in system view

This commit is contained in:
Marcel Baumgartner
2023-03-06 03:22:38 +01:00
parent 62cd63f56b
commit 1f44becc74
14 changed files with 546 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
namespace Moonlight.App.Models.Misc;
public class LogEntry
{
public string Level { get; set; }
public string Message { get; set; }
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
}