blob: b2aad8b244021ac3a8d8b7efe8836bc4f5e432e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
namespace HandBrake.Interop
{
public class SrtSubtitle
{
public bool Default { get; set; }
public string FileName { get; set; }
public string LanguageCode { get; set; }
public string CharacterCode { get; set; }
public int Offset { get; set; }
public SrtSubtitle Clone()
{
return new SrtSubtitle
{
Default = this.Default,
FileName = this.FileName,
LanguageCode = this.LanguageCode,
CharacterCode = this.CharacterCode,
Offset = this.Offset
};
}
}
}
|