ClientCapabilities.cs 898 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using MediaBrowser.Model.Dlna;
  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 bool SupportsPersistentIdentifier { get; set; }
  13. public bool SupportsSync { get; set; }
  14. public DeviceProfile DeviceProfile { get; set; }
  15. public string AppStoreUrl { get; set; }
  16. public string IconUrl { get; set; }
  17. public ClientCapabilities()
  18. {
  19. PlayableMediaTypes = Array.Empty<string>();
  20. SupportedCommands = Array.Empty<string>();
  21. SupportsPersistentIdentifier = true;
  22. }
  23. }
  24. }