aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs
blob: c60224045f1b8be53c92d137000b74f56f447f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace MediaBrowser.Model.Connect
{
    public class ConnectAuthenticationExchangeResult
    {
        /// <summary>
        /// Gets or sets the local user identifier.
        /// </summary>
        /// <value>The local user identifier.</value>
        public string LocalUserId { get; set; }
        /// <summary>
        /// Gets or sets the access token.
        /// </summary>
        /// <value>The access token.</value>
        public string AccessToken { get; set; }
    }
}