SessionCapabilities.cs 525 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Session
  3. {
  4. public class SessionCapabilities
  5. {
  6. public List<string> PlayableMediaTypes { get; set; }
  7. public List<string> SupportedCommands { get; set; }
  8. public bool SupportsMediaControl { get; set; }
  9. public string MessageCallbackUrl { get; set; }
  10. public SessionCapabilities()
  11. {
  12. PlayableMediaTypes = new List<string>();
  13. SupportedCommands = new List<string>();
  14. }
  15. }
  16. }