namespace Socialize.Modules.Notifications.Data; public class NotificationEvent { public Guid Id { get; init; } public Guid WorkspaceId { get; set; } public Guid? ContentItemId { get; set; } public required string EventType { get; set; } public required string EntityType { get; set; } public Guid EntityId { get; set; } public required string Message { get; set; } public Guid? RecipientUserId { get; set; } public string? RecipientEmail { get; set; } public string? MetadataJson { get; set; } public DateTimeOffset CreatedAt { get; init; } public DateTimeOffset? ReadAt { get; set; } }