// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Queue Progress Event Args
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.EventArgs
{
using System;
using HandBrake.ApplicationServices.Model;
using HandBrakeWPF.Services.Queue.Model;
///
/// Queue Progress Event Args
///
public class QueueProgressEventArgs : EventArgs
{
///
/// Initializes a new instance of the class.
///
///
/// The new job.
///
public QueueProgressEventArgs(QueueTask newJob)
{
this.NewJob = newJob;
}
///
/// Gets or sets the new job which is about to be processed.
///
public QueueTask NewJob { get; set; }
}
}