1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Added more options to trakt, popular movies, upcoming, anticipated etc..

This commit is contained in:
Devin Buhl
2017-02-01 18:49:40 -05:00
parent 0c50aa7872
commit 64176b8d26
6 changed files with 107 additions and 31 deletions
+10 -1
View File
@@ -21,9 +21,18 @@ namespace NzbDrone.Core.NetImport.Trakt
public class TraktResponse
{
public int rank { get; set; }
public int? rank { get; set; }
public string listed_at { get; set; }
public string type { get; set; }
public int? watchers { get; set; }
public long? revenue { get; set; }
public long? watcher_count { get; set; }
public long? play_count { get; set; }
public long? collected_count { get; set; }
public Movie movie { get; set; }
}
}