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

23 lines
530 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_info
{
public int code { get; set; }
public string msg { get; set; }
public List<student_infoData> data { get; set; }
}
public class student_infoData
{
public string TaskResultId { get; set; }
public string TaskName { get; set; }
public string TaskParticulars { get; set; }
}
}