feat(api): в HostResponse добавлен объект EkStatus

This commit is contained in:
Mikhail Trubnikov
2024-06-19 14:11:58 +10:00
parent 27f963371e
commit 8722be0d87
3 changed files with 7 additions and 4 deletions

View File

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