using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; namespace Tango.Integration.Operation { public class PrintingFailedEventArgs : PrintingEventArgs { public Exception Exception { get; private set; } public PrintingFailedEventArgs(JobHandler jobHandler, Job job, Exception ex) : base(jobHandler, job) { Exception = ex; } } }