sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Host/LogEntry.cs

16 lines
391 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Domain.Entities;
namespace Sozsoft.Platform.Entities;
public class LogEntry : Entity<Guid>
{
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; }
}