Weathernow.cs:
/* "txt": "晴" //天气状况描述 "tmp": "32", //温度 "hum": "20%", //相对湿度(%) "vis": "10", //能见度(km) "aqi": "30", //空气质量指数 "pm25": "7", //PM2.5 1小时平均值(ug/m³) "qlty": "优", //空气质量类别 "winddir": "北风", //风向 "windsc": "3级", //风力 */ public class Weathernow { public string Txt { get; set; } public string Tmp { get; set; } public string Hum { get; set; } public string Vis { get; set; } public string Aqi { get; set; } public string Pm25 { get; set; } public string Qlty { get; set; } public string Winddir { get; set; } public string Windsc { get; set; } } View Code