AuthenticationRequest.cs 640 B

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