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