2
0

AuthenticationRequest.cs 562 B

123456789101112131415161718192021222324252627
  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. public string PasswordSha1 { get; set; }
  11. public string App { get; set; }
  12. public string AppVersion { get; set; }
  13. public string DeviceId { get; set; }
  14. public string DeviceName { get; set; }
  15. public string RemoteEndPoint { get; set; }
  16. }
  17. }