Files
juipnet/Infrastructure/ServiceClient/BaseInfoClient/Response/Project/ProjectItem.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

18 lines
501 B
C#

using Newtonsoft.Json;
namespace BaseInfoClient.Response.Project
{
public class ProjectItem
{
[JsonProperty("projectCode")] public int ProjectCode { get; set; }
[JsonProperty("name")] public string Name { get; set; } = "";
/// <summary>
/// Ð¡ÇøµØÖ·
/// </summary>
[JsonProperty("location")] public string Location { get; set; } = "";
[JsonProperty("projectType")] public int projectType { get; set; }
}
}