This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HslCommunication.Profinet.Siemens
{
/// <summary>
/// 西门子的PLC类型,目前支持的访问类型
/// </summary>
public enum SiemensPLCS
/// 1200系列
S1200 = 1,
/// 300系列
S300 = 2,
/// 400系列
S400 = 3,
/// 1500系列PLC
S1500 = 4,
/// 200的smart系列
S200Smart = 5,
/// 200系统,需要额外配置以太网模块
S200 = 6
}