mirror of https://github.com/LordMike/TMDbLib.git
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.
58 lines
2.3 KiB
58 lines
2.3 KiB
namespace TMDbLibTests.Helpers
|
|
{
|
|
public static class IdHelper
|
|
{
|
|
// Movies
|
|
public const int Avatar = 19995;
|
|
public const int AGoodDayToDieHard = 47964;
|
|
public const int TheDarkKnightRises = 49026;
|
|
public const int MadMaxFuryRoad = 76341;
|
|
public const string AGoodDayToDieHardImdb = "tt1606378";
|
|
public const string TheDarkKnightRisesImdb = "tt1345836";
|
|
public const int Terminator = 218;
|
|
public const int EvanAlmighty = 2698;
|
|
public const int Furious7 = 168259;
|
|
public const string TheDarkKnightRisesReviewId = "5010553819c2952d1b000451";
|
|
|
|
public const int TmdbTerminatorId = 218;
|
|
public const string ImdbTerminatorId = "tt0088247";
|
|
|
|
// TV
|
|
public const int BreakingBad = 1396;
|
|
public const int BreakingBadSeason1Id = 3572;
|
|
public const int BreakingBadSeason1Episode1Id = 62085;
|
|
public const int BigBangTheory = 1418;
|
|
public const int BigBangTheorySeason1Episode1Id = 64766;
|
|
public const int BigBangTheorySeason1Episode2Id = 64777;
|
|
public const int DoctorWho = 121;
|
|
public const int House = 1408;
|
|
|
|
public const int TmdbBreakingBadId = 1396;
|
|
public const string TvdbBreakingBadId = "81189";
|
|
public const string TvdbBreakingBadSeason1Id = "30272";
|
|
public const string ImdbBreakingBadId = "tt0903747";
|
|
public const string ImdbBreakingBadSeason1Episode1Id = "tt0959621";
|
|
public const string TvRageBreakingBadId = "18164";
|
|
public const string FreebaseBreakingBadId = "en/breaking_bad";
|
|
public const string FreebaseMidBreakingBadId = "m/03d34x8";
|
|
|
|
// Persons
|
|
public const int PersonPartialDate = 833;
|
|
public const int BruceWillis = 62;
|
|
public const int HughLaurie = 41419;
|
|
public const string ImdbBruceWillis = "nm0000246";
|
|
public const int JoshACagan = 129305;
|
|
|
|
// Collections
|
|
public const int JamesBondCollection = 645;
|
|
|
|
// Networks
|
|
public const int TwentiethCenturyFox = 25;
|
|
public const int ColumbiaPictures = 5;
|
|
public const int Hbo = 49;
|
|
|
|
// Credits
|
|
public const string BruceWillisMiamiVice = "525719bb760ee3776a1835d3";
|
|
public const string HughLaurieHouse = "5256ccf519c2956ff607ca00";
|
|
}
|
|
}
|