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

This commit is contained in:
Mikhail Kuznetsov
2024-03-06 14:09:59 +10:00
parent bd595c33c2
commit 563f56b770
5 changed files with 257 additions and 3 deletions

View File

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