Jackett/src/Jackett.Common/Indexers/CinemaZ.cs

23 lines
738 B
C#
Raw Normal View History

using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
2015-08-23 20:45:52 +00:00
namespace Jackett.Common.Indexers
2015-08-23 20:45:52 +00:00
{
public class CinemaZ : AvistazTracker
2015-08-23 20:45:52 +00:00
{
public CinemaZ(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
: base(name: "CinemaZ",
2015-08-23 20:45:52 +00:00
desc: "Part of the Avistaz network.",
link: "https://cinemaz.to/",
configService: configService,
2015-08-23 20:45:52 +00:00
logger: logger,
protectionService: protectionService,
webClient: webClient
)
{
Type = "private";
2015-08-23 20:45:52 +00:00
}
}
}