Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

13 lines
333 B
C#

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; } = "";
}
}