birbmap/Birdmap.API/DTOs/ServiceInfo.cs
2020-11-01 12:25:45 +01:00

12 lines
246 B
C#

using System.Net;
namespace Birdmap.API.DTOs
{
public class ServiceInfo
{
public ServiceRequest Service { get; set; }
public HttpStatusCode StatusCode { get; set; }
public string Response { get; set; }
}
}