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<IProcess> OnUploadProcess { get; set; }
|
}
|
|
public interface IProcessObserver
|
{
|
IProcess Process { get; set; }
|
|
void OnProcessUpdated();
|
void DownloadProcess(IProcess process);
|
}
|
|
public interface ILogOutput
|
{
|
Action<LogMsg> OnLogMsgOutput { get; set; }
|
void LogDisplay(LogMsg msg);
|
}
|
}
|