Files
Sharp7Reactive/Sharp7.Rx/Settings/PlcConnectionSettings.cs
2024-02-07 09:54:18 +01:00

10 lines
234 B
C#

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