终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
682 B

  1. using BPASmartClient.JXJFoodSmallStation.Model;
  2. using BPASmartClient.JXJFoodSmallStation.Model.GVL;
  3. using BPASmartClient.JXJFoodSmallStation.Model.HK_PLC;
  4. using Microsoft.Toolkit.Mvvm.ComponentModel;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Collections.ObjectModel;
  8. using System.Linq;
  9. using System.Reflection;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. namespace BPASmartClient.JXJFoodSmallStation.ViewModel
  13. {
  14. public class PlcVarMonitorViewModel : ObservableObject
  15. {
  16. public PlcVarMonitorViewModel()
  17. {
  18. }
  19. public ObservableCollection<PlcInfos> plcInfos => ProcessControl.GetInstance.CommData;
  20. }
  21. }