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.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.CustomResource.Pages.Model
- {
- public class PlcVariableInfoModel : ObservableObject
- {
- //public int Id { get { return _id; } set { _id = value;OnPropertyChanged(); } }
- //private int _id;
- public string PlcAddress { get { return plcAddress; } set { plcAddress = value; OnPropertyChanged(); } }
- private string plcAddress;
- public int? Length { get { return length; } set { length = value; OnPropertyChanged(); } }
- private int? length;
- }
- }
|