2019-08-28 21:43:55 +00:00
|
|
|
|
using Sonarr.Http;
|
2017-02-11 06:46:39 +00:00
|
|
|
|
|
|
|
|
|
namespace Sonarr.Api.V3
|
|
|
|
|
{
|
2019-08-28 21:43:55 +00:00
|
|
|
|
public abstract class SonarrV3FeedModule : SonarrModule
|
2017-02-11 06:46:39 +00:00
|
|
|
|
{
|
|
|
|
|
protected SonarrV3FeedModule(string resource)
|
|
|
|
|
: base("/feed/v3/" + resource.Trim('/'))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-28 21:43:55 +00:00
|
|
|
|
}
|