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

25 lines
632 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.api
{
public class get_class_user
{
public int code { get; set; }
public string msg { get; set; }
public List<class_userData> data { get; set; }
}
public class class_userData
{
public string UserId { get; set; }
public string UserName { get; set; }
public string ClassName { get; set; }
public string IdentityName { get; set; }
public DateTime CreateTime { get; set; }
}
}