chore: moving towards agentic development
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace Socialize.Modules.Notifications.Contracts;
|
||||
|
||||
public record NotificationEventWriteModel(
|
||||
Guid WorkspaceId,
|
||||
Guid? ContentItemId,
|
||||
string EventType,
|
||||
string EntityType,
|
||||
Guid EntityId,
|
||||
string Message,
|
||||
Guid? RecipientUserId,
|
||||
string? RecipientEmail,
|
||||
string? MetadataJson);
|
||||
|
||||
public interface INotificationEventWriter
|
||||
{
|
||||
Task WriteAsync(NotificationEventWriteModel model, CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user