终端一体化运控平台
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

37 wiersze
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Model
  7. {
  8. public class SimOrderVisibleData
  9. {
  10. //public string ClientDeviceType { get { return _mClientDeviceType; } set { _mClientDeviceType = value; } }
  11. //private string _mClientDeviceType;
  12. public ushort Loc { get { return _mLoc; } set { _mLoc = value; } }
  13. private ushort _mLoc;
  14. public bool IsEnable { get { return _mIsEnable; } set { _mIsEnable = value; } }
  15. private bool _mIsEnable;
  16. public bool IsSelected { get { return _mIsSelected; } set { _mIsSelected = value; IsEnable = !value; } }
  17. private bool _mIsSelected;
  18. public string Text { get { return _mText; } set { _mText = value; } }
  19. private string _mText;
  20. public ushort MinValue { get { return _mMinValue; } set { _mMinValue = value; } }
  21. private ushort _mMinValue;
  22. public ushort MaxValue { get { return _mMaxValue; } set { _mMaxValue = value; } }
  23. private ushort _mMaxValue;
  24. }
  25. }