// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Queue Completed Event Args // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.EventArgs { using System; using System.Runtime.Serialization; /// /// Queue Completed Event Args /// [DataContract] public class QueueCompletedEventArgs : EventArgs { /// /// Initializes a new instance of the class. /// /// /// The was Manually Stopped. /// public QueueCompletedEventArgs(bool wasManuallyStopped) { this.WasManuallyStopped = wasManuallyStopped; } /// /// Gets a value indicating whether the queue WasManuallyStopped. /// [DataMember] public bool WasManuallyStopped { get; private set; } } }