// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the SrtSubtitle type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model
{
///
/// The srt subtitle.
///
public class SrtSubtitle
{
///
/// Gets or sets the character code.
///
public string CharacterCode { get; set; }
///
/// Gets or sets a value indicating whether the subtitle track should be marked as default.
///
public bool Default { get; set; }
///
/// Gets or sets a value indicating the subtitle track should be burned in.
///
public bool BurnedIn { get; set; }
///
/// Gets or sets the file name.
///
public string FileName { get; set; }
///
/// Gets or sets the language code.
///
public string LanguageCode { get; set; }
///
/// Gets or sets the offset.
///
public int Offset { get; set; }
///
/// The clone.
///
///
/// The .
///
public SrtSubtitle Clone()
{
return new SrtSubtitle
{
Default = this.Default,
BurnedIn = this.BurnedIn,
FileName = this.FileName,
LanguageCode = this.LanguageCode,
CharacterCode = this.CharacterCode,
Offset = this.Offset
};
}
}
}