Files
social-media/backend/Modules/Notifications/Data/NotificationEvent.cs
Jonathan Bourdon df3e602015
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled
feat: pivot to social media workflow app
2026-04-24 12:58:35 -04:00

18 lines
636 B
C#

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