コード例 #1
0
ファイル: TvShowRepo.cs プロジェクト: yorgov/SeriesManager
 private TvShowRepo()
 {
     _tmdbClient = new TMDbClient(Settings.TMDB_API_KEY);
     _tmdbClient.GetConfig();
     _strikeClient = new Strike();
     _jsonStorage = new JsonStorage();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: yorgov/StrikeApiLibrary
 static void Main(string[] args)
 {
     Strike client = new Strike();
     var search = client.Search("Dexter");
     var count = client.Count();
     var download = client.Download(search.Torrents[0].TorrentHash);
 }