AuthorizationInfo.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. 
  2. namespace MediaBrowser.Controller.Net
  3. {
  4. public class AuthorizationInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the user identifier.
  8. /// </summary>
  9. /// <value>The user identifier.</value>
  10. public string UserId { get; set; }
  11. /// <summary>
  12. /// Gets or sets the device identifier.
  13. /// </summary>
  14. /// <value>The device identifier.</value>
  15. public string DeviceId { get; set; }
  16. /// <summary>
  17. /// Gets or sets the device.
  18. /// </summary>
  19. /// <value>The device.</value>
  20. public string Device { get; set; }
  21. /// <summary>
  22. /// Gets or sets the client.
  23. /// </summary>
  24. /// <value>The client.</value>
  25. public string Client { get; set; }
  26. /// <summary>
  27. /// Gets or sets the version.
  28. /// </summary>
  29. /// <value>The version.</value>
  30. public string Version { get; set; }
  31. /// <summary>
  32. /// Gets or sets the token.
  33. /// </summary>
  34. /// <value>The token.</value>
  35. public string Token { get; set; }
  36. }
  37. }