Added some item cats

This commit is contained in:
TheXamlGuy
2024-05-27 18:53:06 +01:00
parent fe4b14974e
commit 1be1399511
2 changed files with 75 additions and 8 deletions
+68
View File
@@ -6,6 +6,74 @@ public record ItemConfiguration
public IList<ItemSectionConfiguration>? Sections { get; set; }
public static ItemConfiguration Identity => new()
{
Name = "Identity",
Sections = new List<ItemSectionConfiguration>
{
}
};
public static ItemConfiguration BankAccount => new()
{
Name = "Bank Account",
Sections = new List<ItemSectionConfiguration>
{
}
};
public static ItemConfiguration Note => new()
{
Name = "Note",
Sections = new List<ItemSectionConfiguration>
{
}
};
public static ItemConfiguration Document => new()
{
Name = "Document",
Sections = new List<ItemSectionConfiguration>
{
}
};
public static ItemConfiguration DrivingLicence => new()
{
Name = "Driving Licence",
Sections = new List<ItemSectionConfiguration>
{
}
};
public static ItemConfiguration Login => new()
{
Name = "Login",
Sections = new List<ItemSectionConfiguration>
{
}
};
public static ItemConfiguration Password => new()
{
Name = "Password",
Sections = new List<ItemSectionConfiguration>
{
}
};
public static ItemConfiguration CreditCard => new()
{
Name = "Credit Card",