jellyfin/MediaBrowser.Model/Dlna/SubtitleStreamInfo.cs

12 lines
336 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; }
2015-01-17 05:29:53 +01:00
public int Index { get; set; }
2014-10-09 01:31:44 +02:00
}
}