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.

34 lines
517 B

8 years ago
5 years ago
8 years ago
5 years ago
8 years ago
8 years ago
8 years ago
  1. using System;
  2. using System.Web;
  3. using System.Xml.Serialization;
  4. namespace SiteServer.Utils
  5. {
  6. /// <summary>
  7. /// TabCollection is a container for all of the tabs.
  8. /// </summary>
  9. [Serializable]
  10. public class TabCollection
  11. {
  12. private Tab[] _tabs;
  13. /// <summary>
  14. /// Property Tabs (Tab[])
  15. /// </summary>
  16. [XmlArray("Tabs")]
  17. public Tab[] Tabs
  18. {
  19. get { return _tabs; }
  20. set { _tabs = value; }
  21. }
  22. public TabCollection()
  23. {
  24. }
  25. public TabCollection(Tab[] tabs)
  26. {
  27. _tabs = tabs;
  28. }
  29. }
  30. }