diverse Aenderungen

This commit is contained in:
2026-04-15 11:18:26 +02:00
parent 59e195af71
commit 90133cd0e2
29 changed files with 1651 additions and 77 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace TrafagSalesExporter.Models;
public class AppEventLog
{
public int Id { get; set; }
public DateTime Timestamp { get; set; }
public string Level { get; set; } = "Info";
public string Category { get; set; } = string.Empty;
public int? SiteId { get; set; }
public string Land { get; set; } = string.Empty;
public string Message { get; set; } = string.Empty;
public string Details { get; set; } = string.Empty;
}