JobStatus init

This commit is contained in:
Mikhail Kuznetsov
2023-06-20 12:29:58 +10:00
parent 57fe9eff09
commit 9c19e2fb91
20 changed files with 1370 additions and 148 deletions

View File

@@ -0,0 +1,8 @@
namespace PARR.API.Contracts.V1.Requests.Queries
{
public class JobGetByIpQuery
{
public string? Ip { get; set; }
public DateTimeOffset? Date { get; set; }
}
}