using System;
using Xylem.Common.Utils.ProcessExec.EventArguments;
namespace Xylem.Common.Utils.ProcessExec
{
///
/// Process state interface
///
///
/// - Initial
///
public interface IProcessState
{
///
/// Process update event
///
event EventHandler OnProcessUpdate;
}
}