using Bro.Common.Helper; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Bro.Common.Interface { public interface IMenuNode { //IProcess Process { get; set; } //void DownloadProcess(IProcess process); //Action OnUploadProcess { get; set; } } public interface IProcessObserver { IProcess Process { get; set; } void OnProcessUpdated(); void DownloadProcess(IProcess process); } public interface ILogOutput { Action OnLogMsgOutput { get; set; } void LogDisplay(LogMsg msg); } }