using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Entity.DomainModels.ApiEntity.Test { public class Weather { /// /// /// public string resultcode { get; set; } /// /// 错误的请求KEY /// public string reason { get; set; } /// /// /// public string result { get; set; } /// /// /// public int error_code { get; set; } } }