Files
juipnet/Infrastructure/ServiceClient/BaseInfoClient/Response/`Build/BuildItem.cs

13 lines
333 B
C#
Raw Normal View History

2020-12-28 14:55:48 +08:00
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; } = "";
}
2020-10-07 20:25:03 +08:00
}