AuthenticationRequest.cs 621 B

12345678910111213141516171819202122232425262728
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Controller.Session
  4. {
  5. public class AuthenticationRequest
  6. {
  7. public string Username { get; set; }
  8. public Guid UserId { get; set; }
  9. public string Password { get; set; }
  10. [Obsolete("Send full password in Password field")]
  11. public string PasswordSha1 { get; set; }
  12. public string App { get; set; }
  13. public string AppVersion { get; set; }
  14. public string DeviceId { get; set; }
  15. public string DeviceName { get; set; }
  16. public string RemoteEndPoint { get; set; }
  17. }
  18. }