|
123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkCL.HelpClass
- {
- public class WriteModel<T>
- {
- public WriteModel(EDeviceType deviceType,string address,T value)
- {
- this.DeviceType=deviceType;
- this.Address=address;
- this.Value=value;
- }
- public EDeviceType DeviceType { get; set; }
- public string Address { get; set; }
- public T Value { get; set; }
- }
- }
|