TcpRcvModel.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. using CommonUtils.内部存储;
  9. namespace TcpClientModule.Model
  10. {
  11. public class TcpRcvModel:BindableBase
  12. {
  13. private Encoding rcvEncoding= System.Text.Encoding.Default;
  14. private TcpClientModel _TcpClientModel=new TcpClientModel();
  15. private YesNO hasrn= YesNO.否;
  16. private YesNO isHex= YesNO.否;
  17. private string passStr="OK";
  18. private string storageType="无";
  19. private string storageIndex="无";
  20. public Encoding RcvEncoding
  21. {
  22. get => rcvEncoding; set
  23. {
  24. SetProperty(ref rcvEncoding, value);
  25. }
  26. }
  27. public TcpClientModel Tcp_ClientModel
  28. {
  29. get => _TcpClientModel;
  30. set
  31. {
  32. SetProperty(ref _TcpClientModel, value);
  33. }
  34. }
  35. public YesNO Hasrn { get => hasrn; set { SetProperty(ref hasrn, value); } }
  36. public YesNO IsHex { get => isHex; set { SetProperty(ref isHex, value); } }
  37. public string PassStr { get => passStr; set { SetProperty(ref passStr, value); } }
  38. public string StorageType { get => storageType; set { SetProperty(ref storageType, value); } }
  39. public string StorageIndex { get => storageIndex; set { SetProperty(ref storageIndex, value); } }
  40. public TcpRcvModel()
  41. {
  42. }
  43. }
  44. }