Responses.cs 849 B

123456789101112131415161718192021222324252627282930313233
  1. 
  2. namespace MediaBrowser.Server.Implementations.Connect
  3. {
  4. public class ServerRegistrationResponse
  5. {
  6. public string Id { get; set; }
  7. public string Url { get; set; }
  8. public string Name { get; set; }
  9. public string AccessKey { get; set; }
  10. }
  11. public class UpdateServerRegistrationResponse
  12. {
  13. public string Id { get; set; }
  14. public string Url { get; set; }
  15. public string Name { get; set; }
  16. }
  17. public class GetConnectUserResponse
  18. {
  19. public string Id { get; set; }
  20. public string Name { get; set; }
  21. public string DisplayName { get; set; }
  22. public string Email { get; set; }
  23. public bool IsActive { get; set; }
  24. public string ImageUrl { get; set; }
  25. }
  26. public class ServerUserAuthorizationResponse
  27. {
  28. }
  29. }