1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00
Files
Radarr/NzbDrone.Api/RequestModels/IApiRequest.cs
T
2012-11-02 00:35:49 -07:00

9 lines
144 B
C#

using System.Linq;
namespace NzbDrone.Api.RequestModels
{
public interface IApiRequest
{
string ApiKey { get; set; }
}
}