终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
539 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.MorkCL.HelpClass
  7. {
  8. public class WriteModel<T>
  9. {
  10. public WriteModel(EDeviceType deviceType,string address,T value)
  11. {
  12. this.DeviceType=deviceType;
  13. this.Address=address;
  14. this.Value=value;
  15. }
  16. public EDeviceType DeviceType { get; set; }
  17. public string Address { get; set; }
  18. public T Value { get; set; }
  19. }
  20. }