13 lines
408 B
C#
13 lines
408 B
C#
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
|
|
}
|
|
}
|