using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.PPC.Shared.Jobs; namespace Tango.FSE.Common.RemoteJob { public class RemoteJobUpdatedEventArgs : EventArgs { public RemoteJobUpdateResponse RemoteJobUpdateResponse { get; set; } public RemoteJobUpdatedEventArgs() { RemoteJobUpdateResponse = new RemoteJobUpdateResponse(); } } }