using System;
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; }
        /// 
        /// Gets or sets the last authorizations refresh.
        /// 
        /// The last authorizations refresh.
        public DateTime LastAuthorizationsRefresh { get; set; }
        public ConnectData()
        {
            PendingAuthorizations = new List();
        }
    }
}