blob: 2302ddbc3f8411c7821ec50608b440ba0c735134 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using MediaBrowser.Model.QuickConnect;
namespace Emby.Server.Implementations.QuickConnect
{
/// <summary>
/// Persistent quick connect configuration.
/// </summary>
public class QuickConnectConfiguration
{
/// <summary>
/// Gets or sets persistent quick connect availability state.
/// </summary>
public QuickConnectState State { get; set; }
}
}
|