mirror of https://github.com/Radarr/Radarr
11 lines
308 B
C#
11 lines
308 B
C#
|
using System.Linq;
|
|||
|
using ServiceStack.ServiceInterface.ServiceModel;
|
|||
|
|
|||
|
namespace NzbDrone.Api.ResponseModels
|
|||
|
{
|
|||
|
public interface IApiResponse : IHasResponseStatus
|
|||
|
{
|
|||
|
string Result { get; set; }
|
|||
|
ResponseStatus ResponseStatus { get; set; } //Where Exceptions get auto-serialized
|
|||
|
}
|
|||
|
}
|