Files
MewtocolNet/MewtocolTests/EncapsulatedTests/ExpectedPlcInformationData.cs
Felix Weiß d956525538 Removed old examples
- added instant register update if write was successful
2023-07-06 22:20:01 +02:00

18 lines
312 B
C#

using MewtocolNet;
namespace MewtocolTests.EncapsulatedTests;
public class ExpectedPlcInformationData {
public string PLCName { get; set; }
public string PLCIP { get; set; }
public int PLCPort { get; set; }
public PlcType Type { get; set; }
public int ProgCapacity { get; set; }
}