jellyfin/MediaBrowser.Model/Dlna/SubtitleProfile.cs

17 lines
369 B
C#
Raw Normal View History

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