You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using NLog;
|
|
using NzbDrone.Api.SignalR;
|
|
|
|
namespace NzbDrone.Api.Series
|
|
{
|
|
public class SeriesConnection : BasicResourceConnection<Core.Tv.Series>
|
|
{
|
|
public override string Resource
|
|
{
|
|
get { return "/Series"; }
|
|
}
|
|
}
|
|
}
|