namespace MediaBrowser.Model.Connect
{
    public class ConnectAuthenticationExchangeResult
    {
        /// 
        /// Gets or sets the local user identifier.
        /// 
        /// The local user identifier.
        public string LocalUserId { get; set; }
        /// 
        /// Gets or sets the access token.
        /// 
        /// The access token.
        public string AccessToken { get; set; }
    }
}