naps2/NAPS2.Lib/EtoForms/Layout/LayoutContainer.cs
2023-04-02 12:49:51 -07:00

11 lines
277 B
C#

namespace NAPS2.EtoForms.Layout;
public abstract class LayoutContainer : LayoutElement
{
protected LayoutContainer(IEnumerable<LayoutElement> children)
{
Children = ExpandChildren(children);
}
protected internal List<LayoutElement> Children { get; }
}