mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-05 07:09:30 -06:00
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
namespace MetaNodes;
|
|
/// <summary>
|
|
/// The Global variables used by this plugin
|
|
/// </summary>
|
|
internal class Globals
|
|
{
|
|
/// <summary>
|
|
/// The name fo the Movie Info variable
|
|
/// </summary>
|
|
public static string MOVIE_INFO = "MovieInfo";
|
|
/// <summary>
|
|
/// The name fo the Movie variable
|
|
/// </summary>
|
|
public static string MOVIE = "Movie";
|
|
/// <summary>
|
|
/// The name fo the Movie Credits variable
|
|
/// </summary>
|
|
public static string MOVIE_CREDITS = "MovieCredits";
|
|
/// <summary>
|
|
/// The name fo the TV Show Info variable
|
|
/// </summary>
|
|
public static string TV_SHOW_INFO = "TVShowInfo";
|
|
/// <summary>
|
|
/// The name fo the TV Episode Info variable
|
|
/// </summary>
|
|
public static string TV_EPISODE_INFO = "TVEpisodeInfo";
|
|
|
|
/// <summary>
|
|
/// The token used to query the MovieDB
|
|
/// </summary>
|
|
internal const string MovieDbBearerToken = "eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiIxZjVlNTAyNmJkMDM4YmZjZmU2MjI2MWU2ZGEwNjM0ZiIsInN1YiI6IjRiYzg4OTJjMDE3YTNjMGY5MjAwMDIyZCIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.yMwyT8DEK1rF1gQMKJ-ZSy-dUGxFs5T345XwBLrvrWE";
|
|
|
|
}
|