```Config = new Dictionary<string, Dictionary&l...
# dotnet
e
Copy code
Config = new Dictionary<string, Dictionary<string, string>[]>
                {
                    {
                        "Bindings", new[]
                        {
                            new Dictionary<string, string>
                            {
                                {"AuthLevel", "function"},
                                {"Direction", "in"},
                                {"Name", "req"},
                                {"Type", "httpTrigger"},
                            },
                            new Dictionary<string, string>
                            {
                                {"Direction", "out"},
                                {"Name", "res"},
                                {"Type", "http"}
                            }
                        }
                    },
                },
that's how the config looks