/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend.Core/Execution/IExecutionScope.cs
19 строк
506 B
Ivan Kozhin
Move execution related classes into QueryCat.Backend.Core.Execution
17 янв 2024, 13:39
17 янв 2024, 13:39
9e553ad
Код
Авторство
О чём код?
using QueryCat.Backend.Core.Types; namespace QueryCat.Backend.Core.Execution; /// <summary> /// The execution scope contains variables, variables names and parent scope. /// </summary> public interface IExecutionScope { /// <summary> /// The dictionary contains variable name and its value. /// </summary> IDictionary<string, VariantValue> Variables { get; } /// <summary> /// Parent scope. If null it is the root scope. /// </summary> IExecutionScope? Parent { get; } }