public StructDocumentationModel(StructDocumentationModel objParent, ScopeType intScope, string strName, string strType, int intOrder)
 {
     Parent = objParent;
     Scope  = intScope;
     Name   = strName;
     Type   = strType;
     Order  = intOrder;
 }
 public StructDocumentationModel(StructDocumentationModel parent, ScopeType scope, string name, string type, int order)
 {
     Parent = parent;
     Scope  = scope;
     Name   = name;
     Type   = type;
     Order  = order;
 }