// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Scan Progress Event Args
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.EventArgs
{
using System;
using System.Runtime.Serialization;
///
/// Scan Progress Event Args
///
[DataContractAttribute]
public class ScanProgressEventArgs : EventArgs
{
///
/// Gets or sets the title currently being scanned.
///
[DataMember]
public int CurrentTitle { get; set; }
///
/// Gets or sets the total number of Titles.
///
[DataMember]
public int Titles { get; set; }
}
}