18 lines
552 B
C#
18 lines
552 B
C#
using AyCode.Core.Enums;
|
|
using AyCode.Core.Loggers;
|
|
using AyCode.Interfaces.Entities;
|
|
|
|
namespace AyCode.Entities.LogItems;
|
|
|
|
public interface IAcLogItem : IEntityInt
|
|
{
|
|
public int LogHeaderId { get; set; }
|
|
public DateTime TimeStampUtc { get; set; }
|
|
public AppType AppType { get; set; }
|
|
public LogLevel LogLevel { get; set; }
|
|
public int ThreadId { get; set; }
|
|
public string? CategoryName { get; set; }
|
|
public string? CallerName { get; set; }
|
|
public string? Text { get; set; }
|
|
public string? Exception { get; set; }
|
|
} |