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

23 lines
510 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_log_info
{
public int code { get; set; }
public string msg { get; set; }
public List<log_infoData> data { get; set; }
}
public class log_infoData
{
public string UserName { get; set; }
public string LogInfo { get; set; }
public DateTime CreateTime { get; set; }
}
}