ClientCapabilities.cs 984 B

123456789101112131415161718192021222324252627282930313233
  1. using MediaBrowser.Model.Dlna;
  2. using System;
  3. namespace MediaBrowser.Model.Session
  4. {
  5. public class ClientCapabilities
  6. {
  7. public string[] PlayableMediaTypes { get; set; }
  8. public string[] SupportedCommands { get; set; }
  9. public bool SupportsMediaControl { get; set; }
  10. public bool SupportsContentUploading { get; set; }
  11. public string MessageCallbackUrl { get; set; }
  12. public string PushToken { get; set; }
  13. public string PushTokenType { get; set; }
  14. public bool SupportsPersistentIdentifier { get; set; }
  15. public bool SupportsSync { get; set; }
  16. public DeviceProfile DeviceProfile { get; set; }
  17. public string AppStoreUrl { get; set; }
  18. public string IconUrl { get; set; }
  19. public ClientCapabilities()
  20. {
  21. PlayableMediaTypes = new string[] {};
  22. SupportedCommands = new string[] {};
  23. SupportsPersistentIdentifier = true;
  24. }
  25. }
  26. }