Radarr/src/NzbDrone.Api/Health/HealthResource.cs

15 lines
338 B
C#
Raw Normal View History

2014-02-26 05:40:47 +00:00
using System;
using NzbDrone.Api.REST;
2016-02-29 23:33:28 +00:00
using NzbDrone.Common.Http;
2014-02-26 05:40:47 +00:00
using NzbDrone.Core.HealthCheck;
namespace NzbDrone.Api.Health
{
public class HealthResource : RestResource
{
public HealthCheckResult Type { get; set; }
public string Message { get; set; }
2016-02-29 23:33:28 +00:00
public HttpUri WikiUrl { get; set; }
2014-02-26 05:40:47 +00:00
}
}