DirectPlayProfile.cs 607 B

12345678910111213141516171819202122232425
  1. 
  2. namespace MediaBrowser.Controller.Dlna
  3. {
  4. public class DirectPlayProfile
  5. {
  6. public string[] Containers { get; set; }
  7. public string[] AudioCodecs { get; set; }
  8. public string[] VideoCodecs { get; set; }
  9. public string MimeType { get; set; }
  10. public DlnaProfileType Type { get; set; }
  11. public DirectPlayProfile()
  12. {
  13. Containers = new string[] { };
  14. AudioCodecs = new string[] { };
  15. VideoCodecs = new string[] { };
  16. }
  17. }
  18. public enum DlnaProfileType
  19. {
  20. Audio = 0,
  21. Video = 1
  22. }
  23. }