/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend/IFuncUnit.cs
21 строка
508 B
Ivan Kozhin
Move IFuncUnit to Backend
29 дек 2023, 06:27
29 дек 2023, 06:27
2f1ded3
Код
Авторство
О чём код?
using QueryCat.Backend.Core.Types; namespace QueryCat.Backend; /// <summary> /// The class is the delegate implementation for QueryCat project. It contains all the data /// needed to run the node delegate and get the result. /// </summary> internal interface IFuncUnit { /// <summary> /// The delegate output type. /// </summary> DataType OutputType { get; } /// <summary> /// Invoke and get value. /// </summary> /// <returns>Value.</returns> VariantValue Invoke(); }