using System.Collections.Generic; using System.Linq; namespace RosettaUI { public class RowElement : ElementGroup { public RowElement(IEnumerable children) : base(children) { } } }