using AyCode.Core.Enums; using AyCode.Core.Loggers; using AyCode.Interfaces.Entities; namespace AyCode.Entities.LogItems; public interface IAcLogItemClient { 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; } }