From bc127d95bab195702a630bd1cd3f18fc6a13ed1a Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Tue, 1 Aug 2023 16:11:44 +0200 Subject: [PATCH] Fixed note on #13145 - don't make IncludeDescendants settable --- src/Umbraco.Core/Notifications/ContentPublishedNotification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Notifications/ContentPublishedNotification.cs b/src/Umbraco.Core/Notifications/ContentPublishedNotification.cs index 7c82561785..58bb76280b 100644 --- a/src/Umbraco.Core/Notifications/ContentPublishedNotification.cs +++ b/src/Umbraco.Core/Notifications/ContentPublishedNotification.cs @@ -27,5 +27,5 @@ public sealed class ContentPublishedNotification : EnumerableObjectNotification< /// public IEnumerable PublishedEntities => Target; - public bool IncludeDescendants { get; set; } + public bool IncludeDescendants { get; } }