namespace OpenTap.Addin { public class SequenceContext { static readonly SessionLocal LocalsSession = new SessionLocal(null); public static VariableContext Locals => LocalsSession.Value; public static void SetLocals(VariableContext locals) { LocalsSession.Value = locals; } } }