mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
18 lines
312 B
C#
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; }
|
|
|
|
}
|