Skip to content

Commit

Permalink
(#411) posts: udpate post created event
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintAngeLs committed Sep 16, 2024
1 parent c3aee1a commit baa9d5d
Showing 1 changed file with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
using Convey.CQRS.Events;
using System;
using System.Collections.Generic;

namespace MiniSpace.Services.Posts.Application.Events
{
public class PostCreated : IEvent
{
public Guid PostId { get; }
public IEnumerable<string> MediaFilesUrls { 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 PostCreated(Guid postId, IEnumerable<string> mediaFilesUrls)
public PostCreated(Guid postId, Guid? userId, Guid? organizationId, Guid? eventId, string textContent,
IEnumerable<string> mediaFilesUrls, string context, string visibility)
{
PostId = postId;
UserId = userId;
OrganizationId = organizationId;
EventId = eventId;
TextContent = textContent;
MediaFilesUrls = mediaFilesUrls;
Context = context;
Visibility = visibility;
}
}
}

0 comments on commit baa9d5d

Please sign in to comment.