mirror of https://github.com/Sonarr/Sonarr
9 lines
144 B
C#
9 lines
144 B
C#
|
using System.Linq;
|
|||
|
|
|||
|
namespace NzbDrone.Api.RequestModels
|
|||
|
{
|
|||
|
public interface IApiRequest
|
|||
|
{
|
|||
|
string ApiKey { get; set; }
|
|||
|
}
|
|||
|
}
|