blob: 6924b25d7da80e7becbd03af45212551f8c519a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; }
}
}
|