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