Files
FileFlowsPlugins/MetaNodes/Globals.cs
2024-06-28 10:39:35 +12:00

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";
}