jellyfin/MediaBrowser.Model/Configuration/FanartOptions.cs
2019-01-17 20:24:39 +01:00

12 lines
270 B
C#

namespace MediaBrowser.Model.Configuration
{
public class FanartOptions
{
/// <summary>
/// Gets or sets the user API key.
/// </summary>
/// <value>The user API key.</value>
public string UserApiKey { get; set; }
}
}