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

This commit is contained in:
Mikhail Kuznetsov
2024-03-06 15:56:52 +10:00
parent 9f3b470854
commit 39fd6bccda
4 changed files with 230 additions and 4 deletions

View File

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