using MediaBrowser.Model.Connect; using System.Collections.Generic; namespace MediaBrowser.Server.Implementations.Connect { public class ConnectData { /// /// Gets or sets the server identifier. /// /// The server identifier. public string ServerId { get; set; } /// /// Gets or sets the access key. /// /// The access key. public string AccessKey { get; set; } /// /// Gets or sets the authorizations. /// /// The authorizations. public List PendingAuthorizations { get; set; } public ConnectData() { PendingAuthorizations = new List(); } } }