Основные reponses

This commit is contained in:
Mikhail Trubnikov
2023-09-19 16:55:56 +10:00
parent a8c015ce7b
commit 9dc5dc5c3e
8 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace PARR.API.Contracts.V1.Responses
{
public class HostResponse
{
public Guid Id { get; set; }
public string Ek { get; set; }
public required string IP { get; set; }
public string? Status { get; set; }
public string? WorkGroup { get; set; }
public string? ResponseArea { get; set; }
}
}