jellyfin/MediaBrowser.Controller/Subtitles/SubtitleResponse.cs

11 lines
245 B
C#
Raw Normal View History

2014-05-12 00:38:10 +02:00
using System.IO;
namespace MediaBrowser.Controller.Subtitles
{
public class SubtitleResponse
{
public string Language { get; set; }
public string Format { get; set; }
public Stream Stream { get; set; }
}
}