jellyfin-server/MediaBrowser.Model/Dlna/SubtitleStreamInfo.cs

12 lines
336 B
C#
Raw Normal View History

2014-10-08 23:31:44 +00: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 04:29:53 +00:00
public int Index { get; set; }
2014-10-08 23:31:44 +00:00
}
}