jellyfin/MediaBrowser.Model/Dlna/SubtitleStreamInfo.cs

27 lines
559 B
C#
Raw Normal View History

#nullable disable
2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Dlna
{
public class SubtitleStreamInfo
{
public string Url { get; set; }
2018-12-28 00:27:57 +01:00
public string Language { get; set; }
2018-12-28 00:27:57 +01:00
public string Name { get; set; }
2018-12-28 00:27:57 +01:00
public bool IsForced { get; set; }
2018-12-28 00:27:57 +01:00
public string Format { get; set; }
2018-12-28 00:27:57 +01:00
public string DisplayTitle { get; set; }
2018-12-28 00:27:57 +01:00
public int Index { get; set; }
2018-12-28 00:27:57 +01:00
public SubtitleDeliveryMethod DeliveryMethod { get; set; }
2018-12-28 00:27:57 +01:00
public bool IsExternalUrl { get; set; }
}
}