Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
-
- 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;
- }
- }
|