From 8a0485e093ce5deed1a9c3566245bafbc835ea1b Mon Sep 17 00:00:00 2001 From: Sebastiaan Jansssen Date: Thu, 1 Feb 2018 13:07:02 +0100 Subject: [PATCH] Consent class really needs to be public --- src/Umbraco.Core/Models/Consent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Models/Consent.cs b/src/Umbraco.Core/Models/Consent.cs index bd0fb9b632..7c78c8b52c 100644 --- a/src/Umbraco.Core/Models/Consent.cs +++ b/src/Umbraco.Core/Models/Consent.cs @@ -11,7 +11,7 @@ namespace Umbraco.Core.Models /// [Serializable] [DataContract(IsReference = true)] - internal class Consent : Entity, IConsent + public class Consent : Entity, IConsent { private static PropertySelectors _selector;