ClientCapabilities.cs 930 B

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