2
0

SessionCapabilities.cs 441 B

12345678910111213141516171819
  1. 
  2. namespace MediaBrowser.Model.Session
  3. {
  4. public class SessionCapabilities
  5. {
  6. public string[] PlayableMediaTypes { get; set; }
  7. public bool SupportsFullscreenToggle { get; set; }
  8. public bool SupportsOsdToggle { get; set; }
  9. public bool SupportsNavigationControl { get; set; }
  10. public SessionCapabilities()
  11. {
  12. PlayableMediaTypes = new string[] {};
  13. }
  14. }
  15. }