using System.Collections.Generic; using RosettaUI.Reactive; namespace RosettaUI { public class FoldElement : OpenCloseBaseElement { public FoldElement(Element header, IEnumerable contents) : base(header, contents) { } public override ReactiveProperty IsOpenRx { get; } = new(); } }