mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
18 lines
490 B
C#
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; }
|
|||
|
}
|
|||
|
}
|