AlertConfig.cs 316 B

123456789101112131415
  1. using Microsoft.Extensions.Configuration;
  2. namespace CronAlarm.Config
  3. {
  4. public class AlertConfig
  5. {
  6. public Alerts Alerts { get; }
  7. public AlertConfig(IConfiguration config)
  8. {
  9. Alerts = new Alerts();
  10. config.GetSection("Alerts").Bind(Alerts);
  11. }
  12. }
  13. }