DeptAuditorReplaceConfigcsharp
services.Configure<TeamLeaderConfig>(builderContext.Configuration.GetSection("TeamLeaderConfig"));csharp
public class DeptAuditorReplaceConfig
{
public const string Position = "DeptAuditorReplaceConfig";
public Dictionary<string, Dictionary<string, string>> Data { get; set; } = new();
}
var config = _configuration.GetSection(DeptAuditorReplaceConfig.Position).Get<DeptAuditorReplaceConfig>();