11 lines
305 B
C#
11 lines
305 B
C#
public class BindingConfig
|
|
{
|
|
public string Type { get; set; } = "";
|
|
public string Target { get; set; } = "";
|
|
public string Method { get; set; } = "GET";
|
|
public string? Body { get; set; }
|
|
}
|
|
public class Config
|
|
{
|
|
public Dictionary<string, BindingConfig> Bindings { get; set; } = new();
|
|
} |