public JasonetteSection(string header, IEnumerable <JasonetteControl> items, JasonetteSectionType type = JasonetteSectionType.Vertical)
 {
     this.Type   = type;
     this.Header = header;
     this.Items  = new List <JasonetteControl>(items);
 }
 public JasonetteSection(IEnumerable <JasonetteControl> items, JasonetteSectionType type = JasonetteSectionType.Vertical)
     : this(null, items, type)
 {
 }