Files
jellyfin-jellyfin-1/MediaBrowser.Server.Implementations/Connect/ConnectData.cs

31 lines
870 B
C#
Raw Normal View History

2014-10-13 16:14:53 -04:00
using MediaBrowser.Model.Connect;
2014-09-14 11:10:51 -04:00
using System.Collections.Generic;
2014-08-24 23:54:45 -04:00
namespace MediaBrowser.Server.Implementations.Connect
{
public class ConnectData
{
/// <summary>
/// Gets or sets the server identifier.
/// </summary>
/// <value>The server identifier.</value>
public string ServerId { get; set; }
/// <summary>
/// Gets or sets the access key.
/// </summary>
/// <value>The access key.</value>
public string AccessKey { get; set; }
2014-09-14 11:10:51 -04:00
/// <summary>
/// Gets or sets the authorizations.
/// </summary>
/// <value>The authorizations.</value>
2014-10-13 16:14:53 -04:00
public List<ConnectAuthorization> PendingAuthorizations { get; set; }
2014-09-14 11:10:51 -04:00
public ConnectData()
{
2014-10-13 16:14:53 -04:00
PendingAuthorizations = new List<ConnectAuthorization>();
2014-09-14 11:10:51 -04:00
}
2014-08-24 23:54:45 -04:00
}
}