blob: d3af568aaa9113812d4144be79716ece7e715019 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.Integration.Operation;
using Tango.PPC.Shared.Jobs;
namespace Tango.FSE.Common.RemoteJob
{
public class RemoteJobStartedEventArgs : EventArgs
{
public RemoteJobUpdateResponse RemoteJobUpdateResponse { get; set; }
public JobHandler JobHandler { get; set; }
public RemoteJobStartedEventArgs()
{
RemoteJobUpdateResponse = new RemoteJobUpdateResponse();
}
}
}
|