summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/ScanProgressEventArgs.cs
blob: e9f06715abb0001073cc887e5610a334bac017a9 (plain)
1
2
3
4
5
6
7
8
9
10
namespace HandBrake.Interop
{
	using System;

	public class ScanProgressEventArgs : EventArgs
	{
		public int CurrentTitle { get; set; }
		public int Titles { get; set; }
	}
}