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