PLCType.cs
372 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Communication.PLCComponent
{
public enum PLCType
{
/// <summary>
/// 西门子
/// </summary>
Siemens,
/// <summary>
/// 三菱
/// </summary>
Mitsubishi,
}
}