Responses.cs 780 B

12345678910111213141516171819202122232425262728
  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 string IsActive { get; set; }
  24. public string ImageUrl { get; set; }
  25. }
  26. }