Files
parr_api/PARR.API/Contracts/V1/Responses/HostResponse.cs

18 lines
361 B
C#
Raw Normal View History

2023-09-19 16:55:56 +10:00
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; }
}
}