AyCode.Core/AyCode.Entities/LogItems/IAcLogItemClient.cs

17 lines
500 B
C#

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; }
}