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

21 lines
758 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 JobGetByIpQuery
{
/// <summary>
/// По-умолчанию берётся IP-клиента или указанный вручную
/// </summary>
public string? Ip { get; set; }
/// <summary>
/// По-умолчанию расписание на сегодня или указанную дату
/// </summary>
public DateTimeOffset? Date { get; set; }
/// <summary>
/// Вернуть полностью объект Job в json формате или вернуть краткий список со временем
/// </summary>
public bool? IsFullResponse { get; set; }
}
}