2014-05-11 22:38:10 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Subtitles
|
|
|
|
|
{
|
|
|
|
|
public class SubtitleResponse
|
|
|
|
|
{
|
|
|
|
|
public string Language { get; set; }
|
|
|
|
|
public string Format { get; set; }
|
2014-05-17 04:24:10 +00:00
|
|
|
|
public bool IsForced { get; set; }
|
2014-05-11 22:38:10 +00:00
|
|
|
|
public Stream Stream { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|