jellyfin-server/MediaBrowser.Model/Dlna/SubtitleProfile.cs

13 lines
275 B
C#
Raw Normal View History

using System.Xml.Serialization;
2014-07-17 03:17:14 +00:00
namespace MediaBrowser.Model.Dlna
{
public class SubtitleProfile
{
[XmlAttribute("format")]
2014-07-17 03:17:14 +00:00
public string Format { get; set; }
[XmlAttribute("protocol")]
public string Protocol { get; set; }
2014-07-17 03:17:14 +00:00
}
}