2020-04-05 09:10:56 -07:00
|
|
|
#nullable disable
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
{
|
|
|
|
public class SubtitleStreamInfo
|
|
|
|
{
|
|
|
|
public string Url { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string Language { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string Name { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool IsForced { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string Format { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string DisplayTitle { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public int Index { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public SubtitleDeliveryMethod DeliveryMethod { get; set; }
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool IsExternalUrl { get; set; }
|
|
|
|
}
|
2019-01-13 12:31:15 -07:00
|
|
|
}
|