birbmap/Birdmap.API/DTOs/ServiceInfo.cs

12 lines
246 B
C#
Raw Normal View History

2020-11-01 12:25:45 +01:00
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; }
}
}