25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkTM.Model
- {
- public class Alarms : ObservableObject
- {
- private string _id;
- public string ID { get { return _id; } set { _id = value; OnPropertyChanged(); } }
-
- private string _varName;
- public string VarName { get { return _varName; } set { _varName = value; OnPropertyChanged(); } }
-
- private string _plcAddress;
- public string PLCAddress { get { return _plcAddress; } set { _plcAddress = value; OnPropertyChanged(); } }
-
- private string _modbusTCP;
- public string ModbusTCP { get { return _modbusTCP; } set { _modbusTCP = value; OnPropertyChanged(); } }
-
- private string _value;
- public string Value { get { return _value; } set { _value = value; OnPropertyChanged(); } }
-
- private string _notes;
- public string Notes { get { return _notes; } set { _notes = value; OnPropertyChanged(); } }
- }
- }
|