using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkCL.HelpClass { public class WriteModel { 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; } } }