mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 19:02:01 +01:00
15 lines
262 B
C#
15 lines
262 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BTCPayServer.Abstractions.Form;
|
||
|
|
||
|
public class Fieldset
|
||
|
{
|
||
|
public Fieldset()
|
||
|
{
|
||
|
this.Fields = new List<Field>();
|
||
|
}
|
||
|
|
||
|
public string Label { get; set; }
|
||
|
public List<Field> Fields { get; set; }
|
||
|
}
|