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 RemoteJobProgressEventArgs : EventArgs { public RemoteJobProgress Progress { get; set; } public RemoteJobProgressEventArgs() { Progress = new RemoteJobProgress(); } } }