// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the SourceSubtitle type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Model
{
///
/// The source subtitle.
///
public class SourceSubtitle
{
///
/// Gets or sets a value indicating whether the subtitle track should be burned in.
///
public bool BurnedIn { get; set; }
///
/// Gets or sets a value indicating whether default.
///
public bool Default { get; set; }
///
/// Gets or sets a value indicating whether forced.
///
public bool Forced { get; set; }
///
/// Gets or sets the 1-based subtitle track number. 0 means foreign audio search.
///
public int TrackNumber { get; set; }
///
/// The clone.
///
///
/// The .
///
public SourceSubtitle Clone()
{
return new SourceSubtitle
{
TrackNumber = this.TrackNumber,
Default = this.Default,
Forced = this.Forced,
BurnedIn = this.BurnedIn
};
}
}
}