mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
13 lines
270 B
C#
13 lines
270 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.HealthCheck;
|
|
|
|
|
|
namespace NzbDrone.Api.Health
|
|
{
|
|
public class HealthResource : RestResource
|
|
{
|
|
public HealthCheckResultType Type { get; set; }
|
|
public String Message { get; set; }
|
|
}
|
|
}
|