SessionCapabilities.cs 413 B

1234567891011121314151617
  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 SessionCapabilities()
  9. {
  10. PlayableMediaTypes = new List<string>();
  11. SupportedCommands = new List<string>();
  12. }
  13. }
  14. }