Files
parr_api/PARR.API/Contracts/V1/Responses/HostResponse.cs
2023-09-19 16:55:56 +10:00

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; }
}
}