using System.Collections.Generic;
namespace Bro.Common.Interface
{
///
/// 操作配置
///
public interface IOperationConfig //: IOperationResult
{
///
/// 发生异常时的重新尝试次数
///
int ReTryTimes { get; set; }
///
/// 输入参数
///
List InputPara { get; set; }
///
/// 当异常发生时的异常反馈值
///
int ExceptionValue { get; set; }
///
/// 指示该操作的监视配置来源
///
string MonitorSetId { get; set; }
///
/// 调用该操作配置的设备Id
///
string DeviceId { get; set; }
}
}