jellyfin/MediaBrowser.Controller/Net/AuthorizationInfo.cs

49 lines
1.3 KiB
C#
Raw Normal View History

using System;
using MediaBrowser.Controller.Entities;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Net
{
public class AuthorizationInfo
{
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public Guid UserId
{
get
{
2018-12-27 16:43:48 -05:00
return User == null ? Guid.Empty : User.Id;
2018-12-27 18:27:57 -05:00
}
}
2019-01-07 18:27:46 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the device identifier.
/// </summary>
/// <value>The device identifier.</value>
public string DeviceId { get; set; }
/// <summary>
/// Gets or sets the device.
/// </summary>
/// <value>The device.</value>
public string Device { get; set; }
/// <summary>
/// Gets or sets the client.
/// </summary>
/// <value>The client.</value>
public string Client { get; set; }
/// <summary>
/// Gets or sets the version.
/// </summary>
/// <value>The version.</value>
public string Version { get; set; }
/// <summary>
/// Gets or sets the token.
/// </summary>
/// <value>The token.</value>
public string Token { get; set; }
public User User { get; set; }
}
}