TcpClientModel.cs 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.Design.Serialization;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using CommonUtils.Tcp.TcpSocket;
  8. using Newtonsoft.Json;
  9. using Prism.Mvvm;
  10. namespace TcpClientModule.Model
  11. {
  12. public class TcpClientModel:BindableBase
  13. {
  14. private string ipstring="127.0.0.1";
  15. private int port=502;
  16. [JsonIgnore]
  17. public TcpSocketClient socketClient= null;
  18. public TcpClientModel()
  19. {
  20. }
  21. public string Ipstring
  22. {
  23. get => ipstring;
  24. set
  25. {
  26. SetProperty(ref ipstring,value);
  27. }
  28. }
  29. public int Port
  30. {
  31. get => port;
  32. set
  33. {
  34. SetProperty(ref port, value);
  35. }
  36. }
  37. }
  38. }