Files
Walleby/Bitvault/FormGroup.cs
T
TheXamlGuy 7cbca0783f WIP
2024-05-04 15:13:46 +01:00

8 lines
158 B
C#

namespace Bitvault;
public record FormGroup : FormEntry
{
public string? Name { get; set; }
public ICollection<FormField>? Fields { get; set; }
}