jellyfin/MediaBrowser.Model/Dlna/SubtitleStreamInfo.cs

15 lines
500 B
C#
Raw Normal View History

2014-10-08 16:31:44 -07: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; }
2016-05-22 09:45:28 -07:00
public string DisplayTitle { get; set; }
2015-01-16 21:29:53 -07:00
public int Index { get; set; }
2015-03-30 12:57:37 -07:00
public SubtitleDeliveryMethod DeliveryMethod { get; set; }
2015-04-01 19:47:59 -07:00
public bool IsExternalUrl { get; set; }
2014-10-08 16:31:44 -07:00
}
}