Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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(); } }
- }
- }
|