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

16 lines
417 B
C#
Raw 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; }
}
}