终端一体化运控平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

PlcVariableInfoModel.cs 650 B

hace 2 años
hace 1 año
hace 2 años
hace 1 año
hace 2 años
1234567891011121314151617181920
  1. 
  2. using BPA.Helper;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.CustomResource.Pages.Model
  9. {
  10. public class PlcVariableInfoModel : NotifyBase
  11. {
  12. //public int Id { get { return _id; } set { _id = value;OnPropertyChanged(); } }
  13. //private int _id;
  14. public string PlcAddress { get { return plcAddress; } set { plcAddress = value; OnPropertyChanged(); } }
  15. private string plcAddress;
  16. public int? Length { get { return length; } set { length = value; OnPropertyChanged(); } }
  17. private int? length;
  18. }
  19. }