2020-04-19 01:33:09 -05:00
|
|
|
using MediaBrowser.Model.QuickConnect;
|
|
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.QuickConnect
|
|
|
|
|
{
|
2020-06-08 17:14:20 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// Persistent quick connect configuration
|
|
|
|
|
/// </summary>
|
2020-04-19 01:33:09 -05:00
|
|
|
public class QuickConnectConfiguration
|
|
|
|
|
{
|
2020-06-08 17:14:20 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// Quick connect configuration object
|
|
|
|
|
/// </summary>
|
2020-04-19 01:33:09 -05:00
|
|
|
public QuickConnectConfiguration()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-08 17:14:20 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// Persistent quick connect availability state
|
|
|
|
|
/// </summary>
|
2020-04-19 01:33:09 -05:00
|
|
|
public QuickConnectState State { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|