AuthenticationRequest.cs 421 B

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