2020-04-19 06:33:09 +00:00
|
|
|
using MediaBrowser.Model.QuickConnect;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.QuickConnect
|
|
|
|
{
|
2020-06-08 22:14:20 +00:00
|
|
|
/// <summary>
|
2020-06-09 18:28:40 +00:00
|
|
|
/// Persistent quick connect configuration.
|
2020-06-08 22:14:20 +00:00
|
|
|
/// </summary>
|
2020-04-19 06:33:09 +00:00
|
|
|
public class QuickConnectConfiguration
|
|
|
|
{
|
2020-06-08 22:14:20 +00:00
|
|
|
/// <summary>
|
2020-06-09 18:28:40 +00:00
|
|
|
/// Gets or sets persistent quick connect availability state.
|
2020-06-08 22:14:20 +00:00
|
|
|
/// </summary>
|
2020-04-19 06:33:09 +00:00
|
|
|
public QuickConnectState State { get; set; }
|
|
|
|
}
|
|
|
|
}
|