From 74c393142969572e1e844bb8e20feaefe0563e7a Mon Sep 17 00:00:00 2001 From: Andrii Voznesenskyi Date: Tue, 17 Sep 2024 01:09:50 +0200 Subject: [PATCH] (#412) notifications: update core --- .../Entities/FriendEvent.cs | 2 +- .../Entities/NotificationEventType.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/FriendEvent.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/FriendEvent.cs index d480b00a2..79aa0efd8 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/FriendEvent.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/FriendEvent.cs @@ -10,7 +10,7 @@ public class FriendEvent public string Details { get; private set; } public DateTime CreatedAt { get; private set; } - public FriendEvent(Guid id, Guid eventId, Guid userId, Guid friendId, string eventType, string details, DateTime createdAt) + public FriendEvent(Guid id, Guid eventId, Guid userId, Guid friendId, string eventType, string details, DateTime createdAt) { Id = id; EventId = eventId; diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/NotificationEventType.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/NotificationEventType.cs index 51cae3f8e..5fde6b8b4 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/NotificationEventType.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Core/Entities/NotificationEventType.cs @@ -32,5 +32,6 @@ public enum NotificationEventType Other, EmailVerified, TwoFactorCodeGenerated, + CommentLikeAdded, } } \ No newline at end of file