18 lines
371 B
C#
18 lines
371 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; }
|
|
|
|
}
|