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