jellyfin/MediaBrowser.Model/Dlna/SubtitleStreamInfo.cs

11 lines
297 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; }
}
}