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.
namespace SlnMesnac.Config
{
/// <summary>
/// PLC配置,通过AppConfig进行获取
/// </summary>
public class PlcConfig
/// PLC配置ID
public int configId { get; set; }
/// PIC类型
public string plcType { get; set; }
/// PLC IP
public string plcIp { get; set; }
/// PLC Port
public int plcPort { get; set; }
/// PLC Key
public string plcKey { get; set; }
/// 是否启用
public bool isFlage { get; set; }
}