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.
|
- using BPASmartClient.FoodStationTest.Model;
- using BPASmartClient.FoodStationTest.Model.GVL;
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System.Collections.ObjectModel;
-
- namespace BPASmartClient.FoodStationTest.ViewModel
- {
- public class PlcVarMonitorViewModel : ObservableObject
- {
- public PlcVarMonitorViewModel()
- {
-
- }
- public ObservableCollection<PlcInfos> plcInfos => ProcessControl.GetInstance.CommData;
- }
- }
|