using AyCode.Core.Enums; namespace AyCode.Core.Loggers; public interface IAcLogItemClient { 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; } public string? ErrorType { get; set; } }