AuthenticationRequest.cs 525 B

1234567891011121314151617
  1. using System;
  2. namespace MediaBrowser.Controller.Session
  3. {
  4. public class AuthenticationRequest
  5. {
  6. public string Username { get; set; }
  7. public Guid UserId { get; set; }
  8. public string Password { get; set; }
  9. public string PasswordSha1 { 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. }