AccountAuthorization/LKJCpowerSupplyOfficeSimula.../Competition.Mysql/api/get_student_task.cs

23 lines
569 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.api
{
public class get_student_task
{
public int code { get; set; }
public string msg { get; set; }
public List<student_taskData> data { get; set; }
}
public class student_taskData
{
public string TaskUserId { get; set; }
public string TaskName { get; set; }
public DateTime StartTime { get; set; }
public DateTime EndTime { get; set; }
}
}