ClientCapabilities.cs 952 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. using MediaBrowser.Model.Dlna;
  5. namespace MediaBrowser.Model.Session
  6. {
  7. public class ClientCapabilities
  8. {
  9. public string[] PlayableMediaTypes { get; set; }
  10. public string[] SupportedCommands { get; set; }
  11. public bool SupportsMediaControl { get; set; }
  12. public bool SupportsContentUploading { get; set; }
  13. public string MessageCallbackUrl { 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 = Array.Empty<string>();
  22. SupportedCommands = Array.Empty<string>();
  23. SupportsPersistentIdentifier = true;
  24. }
  25. }
  26. }