终端一体化运控平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PlcVariableInfoModel.cs 683 B

2年前
1234567891011121314151617181920
  1. 
  2. using Microsoft.Toolkit.Mvvm.ComponentModel;
  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 : ObservableObject
  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. }