12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using Aitex.Core.Common.DeviceData;
- using MECF.Framework.Common.CommonData;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace FurnaceUI.Views.Maintenances
- {
- public class SensorViewItem : NotifiableItem
- {
- private int _index;
- public int Index
- {
- get => _index;
- set
- {
- _index = value;
- InvokePropertyChanged("Index");
- }
- }
- private string _name;
- public string Name
- {
- get => _name;
- set
- {
- _name = value;
- InvokePropertyChanged("Name");
- }
- }
- private string _displayName;
- public string DisplayName
- {
- get => _displayName;
- set
- {
- _displayName = value;
- InvokePropertyChanged("DisplayName");
- }
- }
- private bool _value;
- public bool Value
- {
- get => _value;
- set
- {
- _value = value;
- InvokePropertyChanged("Value");
- }
- }
- }
- }
|