Add config-driven action system (launch, url) with factory pattern

This commit is contained in:
2026-08-25 00:48:09 +02:00
parent 909d9aa13c
commit 56bf3ff5bf
8 changed files with 86 additions and 26 deletions
+10
View File
@@ -0,0 +1,10 @@
public class BindingConfig
{
public string Type { get; set; } = "";
public string Target { get; set; } = "";
}
public class Config
{
public Dictionary<string, BindingConfig> Bindings { get; set; } = new();
}