16 lines
464 B
C#
16 lines
464 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Indotalent.Data.Entities;
|
|
|
|
public class SerilogLogs
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string? Message { get; set; }
|
|
public string? MessageTemplate { get; set; }
|
|
public string? Level { get; set; }
|
|
public DateTimeOffset TimeStamp { get; set; }
|
|
public string? Exception { get; set; }
|
|
public string? Properties { get; set; }
|
|
public string? LogEvent { get; set; }
|
|
} |