jellyfin/MediaBrowser.Model/Dlna/SubtitleProfile.cs
Luke Pulverenti 5d5a0e3add updated nuget
2014-08-06 22:51:09 -04:00

17 lines
369 B
C#

using System.Xml.Serialization;
namespace MediaBrowser.Model.Dlna
{
public class SubtitleProfile
{
[XmlAttribute("format")]
public string Format { get; set; }
[XmlAttribute("method")]
public SubtitleDeliveryMethod Method { get; set; }
[XmlAttribute("didlMode")]
public string DidlMode { get; set; }
}
}