// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the ScanProgressEventArgs type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.EventArgs
{
using System;
///
/// The Scan Progress Event Args
///
public class ScanProgressEventArgs : EventArgs
{
///
/// Gets or sets the total progress fraction for the scan.
///
public double Progress { get; set; }
///
/// Gets or sets the current preview being processed on the scan.
///
public int CurrentPreview { get; set; }
///
/// Gets or sets the total number of previews to process.
///
public int Previews { get; set; }
///
/// Gets or sets the current title being processed on the scan.
///
public int CurrentTitle { get; set; }
///
/// Gets or sets the total number of titles to process.
///
public int Titles { get; set; }
}
}