Add config-driven action system (launch, url) with factory pattern
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user