1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-27 11:21:43 +02:00
Sonarr/src/Sonarr.Api.V3/SonarrV3FeedModule.cs

13 lines
250 B
C#
Raw Normal View History

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