feat: pivot to social media workflow app
This commit is contained in:
17
backend/Modules/Notifications/Data/NotificationEvent.cs
Normal file
17
backend/Modules/Notifications/Data/NotificationEvent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user