You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
403 B
16 lines
403 B
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; }
|
|
}
|
|
}
|