18 lines
416 B
C#
18 lines
416 B
C#
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; }
|
|
}
|
|
}
|