sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Host/LogEntry.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

15 lines
391 B
C#

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