终端一体化运控平台
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

30 linhas
864 B

  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 ParSet
  9. {
  10. public ushort Minute { get { return _mMinute; } set { _mMinute = value; } }
  11. private ushort _mMinute;
  12. public ushort Second { get { return _mSecond; } set { _mSecond = value; } }
  13. private ushort _mSecond;
  14. public bool IsShield { get { return _mIsShield; } set { _mIsShield = value; } }
  15. private bool _mIsShield;
  16. public string TextBlockContext { get { return _mTextBlockContext; } set { _mTextBlockContext = value; } }
  17. private string _mTextBlockContext;
  18. public string CheckBoxContext { get { return _mCheckBoxContext; } set { _mCheckBoxContext = value; } }
  19. private string _mCheckBoxContext;
  20. }
  21. }