jellyfin/MediaBrowser.Model/Dlna/SubtitleStreamInfo.cs

15 lines
500 B
C#
Raw Normal View History

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