jellyfin/MediaBrowser.Model/Dlna/SubtitleStreamInfo.cs
Luke Pulverenti 07de09f350 sync updates
2015-03-30 15:57:37 -04:00

13 lines
403 B
C#

namespace MediaBrowser.Model.Dlna
{
public class SubtitleStreamInfo
{
public string Url { get; set; }
public string Language { get; set; }
public string Name { get; set; }
public bool IsForced { get; set; }
public string Format { get; set; }
public int Index { get; set; }
public SubtitleDeliveryMethod DeliveryMethod { get; set; }
}
}