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.

43 lines
952 B

  1. namespace Swift.web.Component.Tab
  2. {
  3. public class TabField
  4. {
  5. private string _tabDesc = "";
  6. private string _refPage = "";
  7. private bool _isSelected;
  8. public TabField()
  9. {
  10. }
  11. public TabField(string tabDesc, string refPage, bool isSelected)
  12. {
  13. TabDesc = tabDesc;
  14. RefPage = refPage;
  15. IsSelected = isSelected;
  16. }
  17. public TabField(string tabDesc, string refPage)
  18. {
  19. TabDesc = tabDesc;
  20. RefPage = refPage;
  21. }
  22. public string TabDesc
  23. {
  24. get { return _tabDesc; }
  25. set { _tabDesc = value; }
  26. }
  27. public string RefPage
  28. {
  29. get { return _refPage; }
  30. set { _refPage = value; }
  31. }
  32. public bool IsSelected
  33. {
  34. get { return _isSelected; }
  35. set { _isSelected = value; }
  36. }
  37. }
  38. }