AuthenticationRequest.cs 473 B

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