You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
666 B

  1. using BPA.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.Model
  8. {
  9. public class RawMaterResult : NotifyBase
  10. {
  11. public string Id { get; set; }
  12. public int DeviceNum { get { return _mDeviceNum; } set { _mDeviceNum = value; OnPropertyChanged(); } }
  13. private int _mDeviceNum;
  14. public string Name { get { return _mName; } set { _mName = value; OnPropertyChanged(); } }
  15. private string _mName;
  16. public int ChNum { get { return _mChNum; } set { _mChNum = value; OnPropertyChanged(); } }
  17. private int _mChNum;
  18. }
  19. }