终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

24 行
744 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using BPA.Helper;
  7. namespace BPASmartClient.SmallBatchingSystem
  8. {
  9. public class BaseModel : NotifyBase
  10. {
  11. public int Index { get; set; } = -1;
  12. public BPARelayCommand AddCommand { get; set; }
  13. public BPARelayCommand CancelCommand { get; set; }
  14. public BPARelayCommand SaveCommand { get; set; }
  15. public BPARelayCommand<object> RemoveCommand { get; set; }
  16. public BPARelayCommand<object> DetailsCommand { get; set; }
  17. public string ErrorInfo { get { return _mErrorInfo; } set { _mErrorInfo = value; OnPropertyChanged(); } }
  18. private string _mErrorInfo;
  19. }
  20. }