using System.Collections.Generic; namespace BTCPayServer.Abstractions.Form; public class Fieldset { public Fieldset() { this.Fields = new List(); } public string Label { get; set; } public List Fields { get; set; } }