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.
|
- using Microsoft.EntityFrameworkCore.Metadata;
- using BPA.Helper;
- 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:NotifyBase
- {
- 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(); } }
- }
- }
|