终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

DeviceInfo.cs 811 B

2 år sedan
123456789101112131415161718192021222324
  1. using Microsoft.Toolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace FryPot_DosingSystem.Model
  8. {
  9. internal class DeviceInfo : ObservableObject
  10. {
  11. private string _deviceNum;
  12. public string DeviceNum { get { return _deviceNum; }set { _deviceNum = value;OnPropertyChanged(); } }
  13. private string _deviceName;
  14. public string DeviceName { get { return _deviceName; } set { _deviceName = value; OnPropertyChanged(); } }
  15. private string _ip;
  16. public string Ip { get { return _ip; } set { _ip = value; OnPropertyChanged(); } }
  17. private string _port;
  18. public string Port { get { return _port; } set { _port = value; OnPropertyChanged(); } }
  19. }
  20. }