SubtitleProfile.cs 369 B

1234567891011121314151617
  1. using System.Xml.Serialization;
  2. namespace MediaBrowser.Model.Dlna
  3. {
  4. public class SubtitleProfile
  5. {
  6. [XmlAttribute("format")]
  7. public string Format { get; set; }
  8. [XmlAttribute("method")]
  9. public SubtitleDeliveryMethod Method { get; set; }
  10. [XmlAttribute("didlMode")]
  11. public string DidlMode { get; set; }
  12. }
  13. }