mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
21 lines
430 B
C#
21 lines
430 B
C#
using MewtocolNet;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MewtocolTests.EncapsulatedTests;
|
|
|
|
internal class RegisterReadWriteTest {
|
|
|
|
public IRegister TargetRegister { get; set; }
|
|
|
|
public object IntialValue { get; set; }
|
|
|
|
public object AfterWriteValue { get; set; }
|
|
|
|
public string RegisterPlcAddressName { get; set; }
|
|
|
|
}
|