using System; using Volo.Abp.Domain.Entities; namespace Sozsoft.Platform.Entities; public class LogEntry : Entity { public string? Message { get; set; } public string? MessageTemplate { get; set; } public string? Level { get; set; } public DateTime? TimeStamp { get; set; } public string? Exception { get; set; } public string? Properties { get; set; } }