mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 17:24:46 +03:00
23 lines
544 B
C#
23 lines
544 B
C#
using MediaBrowser.Model.QuickConnect;
|
|
|
|
namespace Emby.Server.Implementations.QuickConnect
|
|
{
|
|
/// <summary>
|
|
/// Persistent quick connect configuration
|
|
/// </summary>
|
|
public class QuickConnectConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Quick connect configuration object
|
|
/// </summary>
|
|
public QuickConnectConfiguration()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Persistent quick connect availability state
|
|
/// </summary>
|
|
public QuickConnectState State { get; set; }
|
|
}
|
|
}
|