14 lines
347 B
C#
14 lines
347 B
C#
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; }
|
|
}
|
|
}
|