feat(api): список статусов ЭК

This commit is contained in:
Mikhail Kuznetsov
2024-03-14 10:14:25 +10:00
parent fd7d5d78f3
commit ff712ed126
7 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
using System.ComponentModel.DataAnnotations;
namespace PARR.API.Contracts.V1.Responses
{
public class EkStatusResponse
{
public int Code { get; set; }
public string Name { get; set; } = string.Empty;
}
}