feat(api): создан WorkController+валидация входных данных

This commit is contained in:
Mikhail Kuznetsov
2024-03-06 12:10:12 +10:00
parent 3c03ee343c
commit bd595c33c2
4 changed files with 294 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace PARR.API.Contracts.V1.Requests
{
public class WorkRequest
{
public required string Name { get; set; }
public int EsppId { get; set; }
public Guid TnkId { get; set; }
}
}