From 0a3b3ac112d69022532f4abe5a96f448d26a7765 Mon Sep 17 00:00:00 2001 From: colin Date: Fri, 22 Nov 2024 10:13:43 +0800 Subject: [PATCH] feat(platform): protected attachment and comment entity --- .../LINGYUN/Platform/Feedbacks/FeedbackAttachment.cs | 2 +- .../LINGYUN/Platform/Feedbacks/FeedbackComment.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnet-core/modules/platform/LINGYUN.Platform.Domain/LINGYUN/Platform/Feedbacks/FeedbackAttachment.cs b/aspnet-core/modules/platform/LINGYUN.Platform.Domain/LINGYUN/Platform/Feedbacks/FeedbackAttachment.cs index 1f0cb7fe1..2a244bcb1 100644 --- a/aspnet-core/modules/platform/LINGYUN.Platform.Domain/LINGYUN/Platform/Feedbacks/FeedbackAttachment.cs +++ b/aspnet-core/modules/platform/LINGYUN.Platform.Domain/LINGYUN/Platform/Feedbacks/FeedbackAttachment.cs @@ -16,7 +16,7 @@ public class FeedbackAttachment : CreationAuditedEntity, IMultiTenant } - public FeedbackAttachment( + internal FeedbackAttachment( Guid id, Guid feedbackId, string name, diff --git a/aspnet-core/modules/platform/LINGYUN.Platform.Domain/LINGYUN/Platform/Feedbacks/FeedbackComment.cs b/aspnet-core/modules/platform/LINGYUN.Platform.Domain/LINGYUN/Platform/Feedbacks/FeedbackComment.cs index 05e965c76..a53e42b72 100644 --- a/aspnet-core/modules/platform/LINGYUN.Platform.Domain/LINGYUN/Platform/Feedbacks/FeedbackComment.cs +++ b/aspnet-core/modules/platform/LINGYUN.Platform.Domain/LINGYUN/Platform/Feedbacks/FeedbackComment.cs @@ -18,7 +18,7 @@ public class FeedbackComment : AuditedEntity, IMultiTenant } - public FeedbackComment( + internal FeedbackComment( Guid id, Guid feedbackId, string capacity,