2
0

ClientCapabilities.cs 733 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Session
  3. {
  4. public class ClientCapabilities
  5. {
  6. public List<string> PlayableMediaTypes { get; set; }
  7. public List<string> SupportedCommands { get; set; }
  8. public bool SupportsMediaControl { get; set; }
  9. public string MessageCallbackUrl { get; set; }
  10. public bool SupportsContentUploading { get; set; }
  11. public bool SupportsUniqueIdentifier { get; set; }
  12. public bool SupportsSync { get; set; }
  13. public ClientCapabilities()
  14. {
  15. PlayableMediaTypes = new List<string>();
  16. SupportedCommands = new List<string>();
  17. SupportsUniqueIdentifier = true;
  18. }
  19. }
  20. }