19 lines
607 B
C#
19 lines
607 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using AyCode.Core.Enums;
|
|
using AyCode.Core.Interfaces;
|
|
using AyCode.Core.Loggers;
|
|
|
|
namespace AyCode.Entities.LogItems;
|
|
|
|
public class AcLogItemClient : 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? ErrorType { get; set; }
|
|
public string? Exception { get; set; }
|
|
} |