using BPASmartClient.JXJFoodSmallStation.Model; using BPASmartClient.JXJFoodSmallStation.Model.GVL; using BPASmartClient.JXJFoodSmallStation.Model.HK_PLC; using Microsoft.Toolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodSmallStation.ViewModel { public class ProcessMonitorViewModel : ObservableObject { public ProcessMonitorViewModel() { } public ObservableCollection plcInfos => ProcessControl.GetInstance.ProcessVar; } }