using SPMS.Domain.Enums; namespace SPMS.Domain.Entities; public class WebhookLog : BaseEntity { public long ServiceId { get; set; } public string WebhookUrl { get; set; } = string.Empty; public WebhookEvent EventType { get; set; } public string Payload { get; set; } = string.Empty; public WebhookStatus Status { get; set; } public int? ResponseCode { get; set; } public string? ResponseBody { get; set; } public DateTime SentAt { get; set; } // Navigation public Service Service { get; set; } = null!; }