From af89372a77cd0c8dee9fd5358d55d65b05b7b21b Mon Sep 17 00:00:00 2001 From: Todd Baert Date: Mon, 29 Jul 2024 13:42:29 -0400 Subject: [PATCH] Update src/OpenFeature/Model/EvaluationContext.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: André Silva <2493377+askpt@users.noreply.github.com> Signed-off-by: Todd Baert --- src/OpenFeature/Model/EvaluationContext.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/OpenFeature/Model/EvaluationContext.cs b/src/OpenFeature/Model/EvaluationContext.cs index 471440ec..304e4cd9 100644 --- a/src/OpenFeature/Model/EvaluationContext.cs +++ b/src/OpenFeature/Model/EvaluationContext.cs @@ -14,7 +14,8 @@ public sealed class EvaluationContext /// /// The index for the "targeting key" property when the EvaluationContext is serialized or expressed as a dictionary. /// - public readonly static string TargetingKeyIndex = "targetingKey"; + internal const string TargetingKeyIndex = "targetingKey"; + private readonly Structure _structure;