first commit

This commit is contained in:
lihansani
2026-07-13 09:39:56 +08:00
commit 74e4738cfc
158 changed files with 15005 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System;
namespace DCIT.Core.Models
{
public class LogEntry
{
public DateTime Timestamp { get; set; } = DateTime.Now;
public LogLevel Level { get; set; }
public string EventCode { get; set; }
public string Message { get; set; }
public string Detail { get; set; }
}
}