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