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

14 lines
306 B
C#
Raw Normal View History

2014-02-26 05:40:47 +00:00
using System;
using NzbDrone.Api.REST;
using NzbDrone.Core.HealthCheck;
namespace NzbDrone.Api.Health
{
public class HealthResource : RestResource
{
public HealthCheckResult Type { get; set; }
2014-02-26 05:40:47 +00:00
public String Message { get; set; }
public Uri WikiUrl { get; set; }
2014-02-26 05:40:47 +00:00
}
}