using System.Text.Json.Serialization; namespace StopShopping.OpenPlatform.TencentLocationApi; public record ResponseDistrict : ResponseBase { /// /// 数据版本,日期 /// /// [JsonPropertyName("data_version")] public string DataVersion { get; set; } = string.Empty; /// /// 结果数组 /// /// [JsonPropertyName("result")] public T[]? Result { get; set; } }