blob: b7e1ccd4a781470cd4ab7954cd0dc68c94404ff1 (
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
25
|
/* ScanProgressEventArgs.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.ApplicationServices
{
using System;
/// <summary>
/// Scan Progress Event Args
/// </summary>
public class ScanProgressEventArgs : EventArgs
{
/// <summary>
/// Gets or sets TotalTitles.
/// </summary>
public int TotalTitles { get; set; }
/// <summary>
/// Gets or sets CurrentTitle.
/// </summary>
public int CurrentTitle { get; set; }
}
}
|