mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-27 18:34:08 +02:00
16 lines
No EOL
368 B
C#
16 lines
No EOL
368 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
{
|
|
public class SubtitleProfile
|
|
{
|
|
[XmlAttribute("format")]
|
|
public string Format { get; set; }
|
|
|
|
[XmlAttribute("protocol")]
|
|
public string Protocol { get; set; }
|
|
|
|
[XmlAttribute("method")]
|
|
public SubtitleDeliveryMethod Method { get; set; }
|
|
}
|
|
} |