Files
jellyfin-jellyfin-1/MediaBrowser.Model/Connect/ConnectAuthenticationExchangeResult.cs
Andrew Rabert a86b71899e Add GPL modules
2018-12-27 18:27:57 -05:00

18 lines
490 B
C#

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; }
}
}