Radarr/NzbDrone.Api/ResponseModels/QualityProfileResponse.cs

12 lines
360 B
C#

using System.Linq;
using ServiceStack.ServiceInterface.ServiceModel;
namespace NzbDrone.Api.ResponseModels
{
public class QualityProfileResponse : IApiResponse
{
public string Result { get; set; }
ResponseStatus IApiResponse.ResponseStatus { get; set; }
ResponseStatus IHasResponseStatus.ResponseStatus { get; set; }
}
}