Files
jellyfin-jellyfin-1/MediaBrowser.Model/Dlna/SubtitleStreamInfo.cs

14 lines
451 B
C#
Raw Normal View History

2014-10-08 19:31:44 -04:00
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; }
2015-01-16 23:29:53 -05:00
public int Index { get; set; }
2015-03-30 15:57:37 -04:00
public SubtitleDeliveryMethod DeliveryMethod { get; set; }
2015-04-01 22:47:59 -04:00
public bool IsExternalUrl { get; set; }
2014-10-08 19:31:44 -04:00
}
}