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.
|
- namespace BPASmartClient.MorkCL.ViewModel
- {
- public class MonitorViewModel
- {
- public static int DeviceId { get; set; }
-
- public ObservableCollection<VariableMonitor> VariableMonitors { get; set; } =
- Plugin.GetInstance?.GetPlugin<DeviceMgr>()?.GetDevices()?.FirstOrDefault(p => p.DeviceId == DeviceId)?.variableMonitors;
- }
- }
|