wcs_server_kate_suzhou/WcsMain/ApiServe/Vo/Board/TaskCountResponse.cs

18 lines
354 B
C#

using Newtonsoft.Json;
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Vo.Board;
public class TaskCountResponse
{
[JsonPropertyName("date")]
public List<string>? Date { get; set; }
[JsonPropertyName("in")]
public List<int>? In { get; set; }
[JsonPropertyName("out")]
public List<int>? Out { get; set; }
}