Files
Sharp7Reactive/Sharp7.Rx/Settings/PlcConnectionSettings.cs
2020-01-17 14:49:01 +01:00

10 lines
263 B
C#

namespace Sharp7.Rx.Settings
{
internal class PlcConnectionSettings
{
public string IpAddress { get; set; }
public int RackNumber { get; set; }
public int CpuMpiAddress { get; set; }
public int Port { get; set; }
}
}