Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- using Microsoft.EntityFrameworkCore.Metadata;
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Documents;
-
- namespace BPASmartClient.MorkMW.Model
- {
- public class VaribleModel:ObservableObject
- {
- private int _id;
- public int Id { get { return _id; }set { _id = value; OnPropertyChanged(); } }
-
- private string _varibleName;
- public string VaribleName { get { return _varibleName; } set { _varibleName = value;OnPropertyChanged(); } }
-
- private string _robotAddress;
- public string RobotAddress { get { return _robotAddress; } set { _robotAddress = value; OnPropertyChanged(); } }
-
- private string _modbusAddress;
- public string ModbusAddress { get { return _modbusAddress; }set { _modbusAddress = value;OnPropertyChanged(); } }
-
- private string _notes;
- public string Notes { get { return _notes; } set { _notes = value; OnPropertyChanged(); } }
-
- private bool _currentValue;
- public bool CurrentValue { get { return _currentValue; } set { _currentValue = value; OnPropertyChanged(); } }
- }
- }
|