18 lines
361 B
C#
18 lines
361 B
C#
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; }
|
|
}
|
|
}
|