13 lines
345 B
C#
13 lines
345 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; } = "";
|
|
}
|
|
} |