summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/SourceSubtitle.cs
blob: 7a8689ae9313b0ca9e7876f251c843cc9be7cbb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace HandBrake.Interop
{
	public class SourceSubtitle
	{
		/// <summary>
		/// Gets or sets the 1-based subtitle track number. 0 means foreign audio search.
		/// </summary>
		public int TrackNumber { get; set; }
		public bool Default { get; set; }
		public bool Forced { get; set; }
		public bool BurnedIn { get; set; }

		public SourceSubtitle Clone()
		{
			return new SourceSubtitle
			{
				TrackNumber = this.TrackNumber,
				Default = this.Default,
				Forced = this.Forced,
				BurnedIn = this.BurnedIn
			};
		}
	}
}