namespace RudderSdk.Core; /// /// Session of a scenario remote-config-override node. The patches are already /// applied to when the event fires. /// public sealed class ConfigChangedSession { internal ConfigChangedSession(ScenarioNodeContext context) => Context = context; /// Underlying node context. public ScenarioNodeContext Context { get; } }