namespace ASC.Webhooks.Service { [Singletone] public class Settings { public Settings() { } public Settings(ConfigurationExtension configuration) { var cfg = configuration.GetSetting("webhooks"); RepeatCount = cfg.RepeatCount ?? 5; ThreadCount = cfg.ThreadCount ?? 1; } public int? RepeatCount { get; } public int? ThreadCount { get; } } }