jellyfin/MediaBrowser.Model/Configuration/FanartOptions.cs
2016-05-24 20:42:12 -04:00

13 lines
274 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; }
}
}