namespace StopShopping.OpenPlatform.Extensions; public class OpenPlatformOptions { public DistrictOptions TencentDistrict { get; set; } = new(); public class DistrictOptions { public string? SecretKey { get; set; } public string? Top3LevelUrl { get; set; } public string? GetChildrenUrl { get; set; } } }