using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.RemoteJob { public interface IRemoteJobProvider : INotifyApplicationStarted { event EventHandler RemoteJobStarted; event EventHandler RemoteJobStopped; event EventHandler RemoteJobUpdated; bool IsRemoteJobRunning { get; } } }