using System.Collections.Generic;
using System.ComponentModel;
namespace Bro.Common.Interface
{
public interface IProcessConfig : IMonitorSetCollection, INotifyPropertyChanged
{
#region Property
///
/// 是否采用离线图片
///
bool IsImageOffline { get; set; }
///
/// 是否测试模式 测试模式下始终反馈OK信号
///
bool IsDemoMode { get; set; }
bool IsLogEnabled { get; set; }
string LogPath { get; set; }
///
/// 是否输出CSV文件
///
bool IsCSVOutputEnabled { get; set; }
#endregion
#region 设备配置
List CameraConfigCollection { get; set; }
List PLCConfigCollection { get; set; }
List DeviceConfigs { get; set; }
#endregion
#region Method
List GetAllDeviceInitialConfigs();
#endregion
}
}