using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Basic
{
///
/// PLC品牌类
///
public class PlcBrand
{
#region 常量定义
///
/// 罗克韦尔AllenBradley
///
public const string AllenBradley = "AllenBradley";
///
/// 西门子
///
public const string Siemens = "Siemens";
///
/// 三菱
///
public const string Mitsubishi = "Mitsubishi";
///
/// 欧姆龙
///
public const string OMRON = "OMRON";
///
/// 虚拟PLC
///
public const string FictitiousPlc = "FictitiousPlc";
///
/// 工艺回放
///
public const string Display = "Display";
///
/// 配置测试
///
public const string ConfigInfo = "ConfigInfo";
///
/// 其他
///
public const string Other = "";
#endregion
}
}