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

18 lines
563 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.

using PARR.Domain.Enums.Workload;
namespace PARR.API.Contracts.V1.Requests.Queries
{
public record StatWorkloadTemplateReqportQuery
{
/// <summary>
/// Тип дополнительно фильтра для работы (ЗО, РГ)
/// </summary>
public WorkloadJobSubfliterType? JobSubfilterType { get; init; }
/// <summary>
/// Значение дополнительного фильтра для работы
/// </summary>
public string? JobSubfilterValue { get; init; }
}
}