AuthenticationRequest.cs 516 B

12345678910111213141516
  1. 
  2. namespace MediaBrowser.Controller.Session
  3. {
  4. public class AuthenticationRequest
  5. {
  6. public string Username { get; set; }
  7. public string UserId { get; set; }
  8. public string PasswordSha1 { get; set; }
  9. public string PasswordMd5 { get; set; }
  10. public string App { get; set; }
  11. public string AppVersion { get; set; }
  12. public string DeviceId { get; set; }
  13. public string DeviceName { get; set; }
  14. public string RemoteEndPoint { get; set; }
  15. }
  16. }