jellyfin/MediaBrowser.Model/Dlna/SubtitleProfile.cs

17 lines
369 B
C#
Raw Normal View History

using System.Xml.Serialization;
2014-07-16 20:17:14 -07:00
namespace MediaBrowser.Model.Dlna
{
public class SubtitleProfile
{
[XmlAttribute("format")]
2014-07-16 20:17:14 -07:00
public string Format { get; set; }
[XmlAttribute("method")]
public SubtitleDeliveryMethod Method { get; set; }
2014-08-06 19:51:09 -07:00
[XmlAttribute("didlMode")]
public string DidlMode { get; set; }
2014-07-16 20:17:14 -07:00
}
}