using Newtonsoft.Json; namespace BaseInfoClient.Response.Build { public class BuildItem { [JsonProperty("projectCode")] public int ProjectCode { get; set; } [JsonProperty("buildCode")] public string BuildCode { get; set; } = ""; [JsonProperty("name")] public string Name { get; set; } = ""; } }