Allow subscription keys to be resolved by reflection

This commit is contained in:
TheXamlGuy
2024-06-02 18:48:51 +01:00
parent 79a94c7470
commit 91a968d34c
31 changed files with 201 additions and 111 deletions
+24 -3
View File
@@ -44,13 +44,25 @@ public record ItemConfiguration
}
};
public static ItemConfiguration Login => new()
{
Sections = new List<ItemSectionConfiguration>
{
new()
{
Entries = new List<ItemEntryConfiguration>
{
new TextEntryConfiguration
{
Label = "Username"
},
new PasswordEntryConfiguration
{
Label = "Password"
}
}
}
}
};
@@ -58,7 +70,16 @@ public record ItemConfiguration
{
Sections = new List<ItemSectionConfiguration>
{
new()
{
Entries = new List<ItemEntryConfiguration>
{
new PasswordEntryConfiguration
{
Label = "Password"
}
}
}
}
};