namespace SPMS.Domain.Entities; public class SystemLog : BaseEntity { public long? ServiceId { get; set; } public long? AdminId { get; set; } public string Action { get; set; } = string.Empty; public string? TargetType { get; set; } public long? TargetId { get; set; } public string? Details { get; set; } public string? IpAddress { get; set; } public DateTime CreatedAt { get; set; } // Navigation public Service? Service { get; set; } public Admin? Admin { get; set; } }