Skip to content

Commit

Permalink
(#411) comments: update update comment updated event
Browse files Browse the repository at this point in the history
SaintAngeLs committed Sep 15, 2024
1 parent 2a66e93 commit a05dcd5
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -10,14 +10,18 @@ public class CommentUpdated : IEvent
public string CommentContext { get; }
public DateTime UpdatedAt { get; }
public string CommentContent { get; }
public string UserName { get; }
public string ProfileImageUrl { get; }

public CommentUpdated(Guid commentId, Guid userId, string commentContext, DateTime updatedAt, string commentContent)
public CommentUpdated(Guid commentId, Guid userId, string commentContext, DateTime updatedAt, string commentContent, string userName, string profileImageUrl)
{
CommentId = commentId;
UserId = userId;
CommentContext = commentContext;
UpdatedAt = updatedAt;
CommentContent = commentContent;
UserName = userName;
ProfileImageUrl = profileImageUrl;
}
}
}

0 comments on commit a05dcd5

Please sign in to comment.