// -------------------------------------------------------------------------------------------------------------------- // // 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 HandBrakeWPF.Services.Scan.EventArgs { using System; using System.Runtime.Serialization; /// /// Scan Progress Event Args /// [DataContract] 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; } /// /// Gets or sets the percentage. /// [DataMember] public decimal Percentage { get; set; } } }