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

19 lines
501 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.API.Contracts.V1.Requests.BaseRequests;
namespace PARR.API.Contracts.V1.Requests.Queries
{
/// <summary>
/// Базовый запрос по загрузке по ЗО, РГ...
/// </summary>
public class WorkloadBaseQuery: TimeZoneOffsetClient
{
public bool? IsActiveTemplate { get; set; }
public bool? IsActiveSchedule { get; set; }
public bool? IsMonth { get; set; }
//public int TimeZoneOffsetHours { get; set; } = 0;
}
}