jellyfin/MediaBrowser.Model/Dlna/SubtitleProfile.cs

16 lines
368 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("protocol")]
public string Protocol { get; set; }
[XmlAttribute("method")]
public SubtitleDeliveryMethod Method { get; set; }
2014-07-17 05:17:14 +02:00
}
}