-
-
Notifications
You must be signed in to change notification settings - Fork 4
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 created event
- Loading branch information
1 parent
a4134c1
commit e875ef6
Showing
1 changed file
with
21 additions
and
2 deletions.
There are no files selected for viewing
23 changes: 21 additions & 2 deletions
23
...ons/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostCreated.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,35 @@ | ||
using Convey.CQRS.Events; | ||
using Convey.MessageBrokers; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace MiniSpace.Services.Notifications.Application.Events.External | ||
{ | ||
[Message("posts")] | ||
public class PostCreated : IEvent | ||
{ | ||
public Guid PostId { get; } | ||
public Guid? UserId { get; } | ||
public Guid? OrganizationId { get; } | ||
public Guid? EventId { get; } | ||
public string TextContent { get; } | ||
public IEnumerable<string> MediaFilesUrls { get; } | ||
public string Context { get; } | ||
public string Visibility { get; } | ||
public bool ShouldNotify { get; } | ||
|
||
public PostCreated(Guid postId) | ||
public PostCreated(Guid postId, Guid? userId, Guid? organizationId, Guid? eventId, string textContent, | ||
IEnumerable<string> mediaFilesUrls, string context, string visibility, bool shouldNotify) | ||
{ | ||
PostId = postId; | ||
UserId = userId; | ||
OrganizationId = organizationId; | ||
EventId = eventId; | ||
TextContent = textContent; | ||
MediaFilesUrls = mediaFilesUrls; | ||
Context = context; | ||
Visibility = visibility; | ||
ShouldNotify = shouldNotify; | ||
} | ||
} | ||
} | ||
} |