Valeo_Line_MES_backend/RIZO.Model/PLC/PlcConnectionConfig.cs

18 lines
416 B
C#
Raw Normal View History

2026-01-25 09:45:29 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RIZO.Model.PLC
{
public class PlcConnectionConfig
{
public string PlcId { get; set; }
public string CpuType { get; set; } // S71200/S71500
public string Ip { get; set; }
public int Rack { get; set; }
public int Slot { get; set; }
}
}