This commit is contained in:
TheXamlGuy
2024-05-04 15:13:46 +01:00
parent 800aede07b
commit 7cbca0783f
36 changed files with 378 additions and 159 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace Bitvault;
public record FormField : FormEntry
{
public string? Name { get; set; }
public string? Description { get; set; }
public object? Value { get; set; }
public FormFieldType Type { get; set; }
}