TcpSendModel.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Prism.Mvvm;
  6. using System.Threading.Tasks;
  7. using static CommonUtils.Enums.Enums;
  8. namespace TcpClientModule.Model
  9. {
  10. public class TcpSendModel:BindableBase
  11. {
  12. private Encoding sendEncoding = System.Text.Encoding.Default;
  13. private TcpClientModel _TcpClientModel=new TcpClientModel();
  14. private YesNO hasrn= YesNO.否;
  15. private YesNO isHex= YesNO.否;
  16. private string storageType = "无";
  17. private string storageIndex = "无";
  18. public Encoding SendEncoding
  19. {
  20. get => sendEncoding;
  21. set
  22. {
  23. SetProperty(ref sendEncoding, value);
  24. }
  25. }
  26. public TcpClientModel Tcp_ClientModel
  27. {
  28. get => _TcpClientModel; set { SetProperty(ref _TcpClientModel, value); }
  29. }
  30. public YesNO Hasrn { get => hasrn; set { SetProperty(ref hasrn, value); } }
  31. public YesNO IsHex { get => isHex; set { SetProperty(ref isHex, value); } }
  32. public string StorageType { get => storageType; set { SetProperty(ref storageType, value); } }
  33. public string StorageIndex { get => storageIndex; set { SetProperty(ref storageIndex, value); } }
  34. }
  35. }