Files
parr_api/PARR.API/Contracts/V1/Requests/Queries/WorkGetAllQuery.cs

26 lines
663 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace PARR.API.Contracts.V1.Requests.Queries
{
public class WorkGetAllQuery
{
/// <summary>
/// С иерархией до процесса
/// </summary>
public bool AllParents { get; set; } = false;
/// <summary>
/// Поиск по имени. Например: "прочее"
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Поиск по ИД
/// </summary>
public Guid? Id { get; set; }
/// <summary>
/// Фильтр по ИД ТНК
/// </summary>
public Guid? TnkId { get; set; }
}
}