Changed the folder name

This commit is contained in:
ashutosh.nehete 2025-09-08 10:32:32 +05:30
parent 1fd0837640
commit 4f77431541

View File

@ -0,0 +1,12 @@
namespace Marco.Pms.Model.Logs
{
public class LogStructure
{
public string LogLevel { get; set; } = "Info";
public string Message { get; set; } = string.Empty;
public DateTime TimeStamp { get; set; }
public string? IpAddress { get; set; }
public string? UserAgent { get; set; }
public string? Details { get; set; } // json serialized string
}
}