public static CT_Groups Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) return null; CT_Groups ctObj = new CT_Groups(); if (node.Attributes["count"] != null) ctObj.count = XmlHelper.ReadUInt(node.Attributes["count"]); ctObj.group = new List<CT_LevelGroup>(); foreach (XmlNode childNode in node.ChildNodes) { if (childNode.LocalName == "group") ctObj.group.Add(CT_LevelGroup.Parse(childNode, namespaceManager)); } return ctObj; }
public CT_GroupLevel() { this.extLstField = new CT_ExtensionList(); this.groupsField = new CT_Groups(); this.userField = false; this.customRollUpField = false; }