JobStatus init
This commit is contained in:
15
PARR.API/Contracts/V1/Requests/Queries/JobGetAllQuery.cs
Normal file
15
PARR.API/Contracts/V1/Requests/Queries/JobGetAllQuery.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PARR.API.Contracts.V1.Requests.Queries
|
||||
{
|
||||
public class JobGetAllQuery
|
||||
{
|
||||
/// <summary>
|
||||
/// true - вкл задания, false - выкл задания, null - все задания
|
||||
/// </summary>
|
||||
public bool? IsEnabled { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Список запланированных заданий на указанную дату
|
||||
/// </summary>
|
||||
public DateTimeOffset? StartDatePlanned { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user