Initial configuration write changes

This commit is contained in:
TheXamlGuy
2024-01-23 21:41:47 +00:00
parent 2f827753f5
commit 185f0e9f45
17 changed files with 134 additions and 67 deletions
+11
View File
@@ -9,6 +9,17 @@ public class PrimaryWidget :
WidgetBuilder<PrimaryWidgetConfiguration>.Configure(args =>
{
args.Name = "Primary commands";
args.Commands =
[
new KeyAcceleratorCommandConfiguration
{
Id = Guid.NewGuid(),
Order = 0,
Text = "Test",
Icon = "dd",
Key = 1
}
];
}).ConfigureServices(services =>
{
services.AddCache<(Guid ParentId, Guid Id), PrimaryCommandConfiguration>()