-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#412) notifications: update post updated evnet
- Loading branch information
1 parent
e0c4661
commit 8aa77fd
Showing
1 changed file
with
16 additions
and
2 deletions.
There are no files selected for viewing
18 changes: 16 additions & 2 deletions
18
...ons/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostUpdated.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,30 @@ | ||
using Convey.CQRS.Events; | ||
using Convey.MessageBrokers; | ||
using System; | ||
|
||
namespace MiniSpace.Services.Notifications.Application.Events.External | ||
{ | ||
[Message("posts")] | ||
public class PostUpdated : IEvent | ||
{ | ||
public Guid PostId { get; } | ||
public Guid? UserId { get; } | ||
public Guid? OrganizationId { get; } | ||
public Guid? EventId { get; } | ||
public string TextContent { get; } | ||
public string Context { get; } | ||
public bool ShouldNotify { get; } | ||
|
||
public PostUpdated(Guid postId) | ||
public PostUpdated(Guid postId, Guid? userId, Guid? organizationId, | ||
Guid? eventId, string textContent, string context, bool shouldNotify) | ||
{ | ||
PostId = postId; | ||
UserId = userId; | ||
OrganizationId = organizationId; | ||
EventId = eventId; | ||
TextContent = textContent; | ||
Context = context; | ||
ShouldNotify = shouldNotify; | ||
} | ||
} | ||
} | ||
} |