ClientCapabilities.cs 409 B

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