mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-26 14:50:26 -05:00
18 lines
405 B
C#
18 lines
405 B
C#
namespace Kyoo.TheMovieDb.Models
|
|
{
|
|
/// <summary>
|
|
/// The option containing the api key for TheMovieDb.
|
|
/// </summary>
|
|
public class TheMovieDbOptions
|
|
{
|
|
/// <summary>
|
|
/// The path to get this option from the root configuration.
|
|
/// </summary>
|
|
public const string Path = "the-moviedb";
|
|
|
|
/// <summary>
|
|
/// The api key of TheMovieDb.
|
|
/// </summary>
|
|
public string ApiKey { get; set; }
|
|
}
|
|
} |