This commit is contained in:
TheXamlGuy
2024-05-28 17:30:40 +01:00
parent f8acc36022
commit 7765c31786
22 changed files with 80 additions and 91 deletions
-13
View File
@@ -2,16 +2,10 @@
public record ItemConfiguration
{
public string Name { get; set; } = "";
public IList<ItemSectionConfiguration>? Sections { get; set; }
public static ItemConfiguration Identity => new()
{
Name = "Identity",
Sections = new List<ItemSectionConfiguration>
{
@@ -20,7 +14,6 @@ public record ItemConfiguration
public static ItemConfiguration BankAccount => new()
{
Name = "Bank Account",
Sections = new List<ItemSectionConfiguration>
{
@@ -29,7 +22,6 @@ public record ItemConfiguration
public static ItemConfiguration Note => new()
{
Name = "Note",
Sections = new List<ItemSectionConfiguration>
{
@@ -39,7 +31,6 @@ public record ItemConfiguration
public static ItemConfiguration Document => new()
{
Name = "Document",
Sections = new List<ItemSectionConfiguration>
{
@@ -48,7 +39,6 @@ public record ItemConfiguration
public static ItemConfiguration DrivingLicence => new()
{
Name = "Driving Licence",
Sections = new List<ItemSectionConfiguration>
{
@@ -58,7 +48,6 @@ public record ItemConfiguration
public static ItemConfiguration Login => new()
{
Name = "Login",
Sections = new List<ItemSectionConfiguration>
{
@@ -67,7 +56,6 @@ public record ItemConfiguration
public static ItemConfiguration Password => new()
{
Name = "Password",
Sections = new List<ItemSectionConfiguration>
{
@@ -76,7 +64,6 @@ public record ItemConfiguration
public static ItemConfiguration CreditCard => new()
{
Name = "Credit Card",
Sections = new List<ItemSectionConfiguration>
{
new()