From ceaae13575cb1ff8db556e1de3605ca77fe05b01 Mon Sep 17 00:00:00 2001 From: Kenn Jacobsen Date: Mon, 8 Apr 2019 10:39:37 +0200 Subject: [PATCH] Make DoNotCloneAttribute public --- src/Umbraco.Core/Models/DoNotCloneAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Models/DoNotCloneAttribute.cs b/src/Umbraco.Core/Models/DoNotCloneAttribute.cs index a827f7af14..5cce9777cb 100644 --- a/src/Umbraco.Core/Models/DoNotCloneAttribute.cs +++ b/src/Umbraco.Core/Models/DoNotCloneAttribute.cs @@ -16,7 +16,7 @@ namespace Umbraco.Core.Models /// * when the setter performs additional required logic other than just setting the underlying field /// /// - internal class DoNotCloneAttribute : Attribute + public class DoNotCloneAttribute : Attribute { }