/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Cli/Infrastructure/AppExecutionOptions.cs
18 строк
449 B
Ivan Kozhin
IExecutionThread with options
16 янв 2024, 19:18
16 янв 2024, 19:18
12467f6
Код
Авторство
О чём код?
using QueryCat.Backend; namespace QueryCat.Cli.Infrastructure; public class AppExecutionOptions : ExecutionOptions { #if ENABLE_PLUGINS /// <summary> /// List of directories to search for plugins. /// </summary> public List<string> PluginDirectories { get; } = new(); /// <summary> /// Plugins repository. If empty - default will be used. /// </summary> public string? PluginsRepositoryUri { get; init; } #endif }