ClientCapabilities.cs 887 B

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