birbmap/Birdmap.API/DTOs/ServiceInfo.cs

12 lines
247 B
C#
Raw Normal View History

2020-11-01 12:25:45 +01:00
using System.Net;
namespace Birdmap.API.DTOs
{
2020-11-12 18:13:23 +01:00
public record ServiceInfo
2020-11-01 12:25:45 +01:00
{
public ServiceRequest Service { get; set; }
public HttpStatusCode StatusCode { get; set; }
public string Response { get; set; }
}
}