/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Cli/Commands/Options/QueryOptions.cs
37 строк
880 B
Ivan Kozhin
Add "tail" option
18 апр 2024, 13:20
18 апр 2024, 13:20
aaef226
Код
Авторство
О чём код?
using QueryCat.Backend.Core.Types; using QueryCat.Backend.Formatters; namespace QueryCat.Cli.Commands.Options; internal class QueryOptions { public int MaxErrors { get; init; } public bool Statistic { get; init; } public bool DetailedStatistic { get; init; } public bool RowNumberOption { get; init; } public int PageSize { get; init; } public TextTableOutput.Style OutputStyle { get; init; } public int AnalyzeRows { get; init; } public string? ColumnsSeparator { get; init; } public bool DisableCache { get; init; } public bool NoHeader { get; init; } public string FloatNumberFormat { get; init; } = VariantValue.FloatNumberFormat; public TimeSpan FollowTimeout { get; init; } public int TailCount { get; init; } = -1; public TimeSpan QueryTimeout { get; init; } public bool SafeMode { get; init; } }