about summary refs log tree commit diff
path: root/ExampleBots/PluralContactBotPoC/Bot/PluralContactBotConfiguration.cs
blob: f5c21af93806033303552add0e2368986f91e730 (plain) (blame)
1
2
3
4
5
6
7
8
9
using Microsoft.Extensions.Configuration;

namespace PluralContactBotPoC.Bot;

public class PluralContactBotConfiguration {
    public PluralContactBotConfiguration(IConfiguration config) => config.GetRequiredSection("PluralContactBot").Bind(this);

    // public string
}