Kyoo/Kyoo.TheTvdb/TvdbOption.cs
2021-07-17 02:32:50 +02:00

18 lines
391 B
C#

namespace Kyoo.Authentication.Models
{
/// <summary>
/// The option containing the api key for the tvdb.
/// </summary>
public class TvdbOption
{
/// <summary>
/// The path to get this option from the root configuration.
/// </summary>
public const string Path = "tvdb";
/// <summary>
/// The api key of the tvdb.
/// </summary>
public string ApiKey { get; set; }
}
}