blob: 585198295677f37b99760399ce028168aca2c77e (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace HandBrake.Interop
{
using System.Collections.Generic;
public class Subtitles
{
public List<SrtSubtitle> SrtSubtitles { get; set; }
public List<SourceSubtitle> SourceSubtitles { get; set; }
}
}
|