Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
-
- 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;
- }
- }
|