23 lines
579 B
C#
23 lines
579 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_school_manager
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<school_managerData> data { get; set; }
|
|
}
|
|
public class school_managerData
|
|
{
|
|
public string SchoolId { get; set; }
|
|
public string SchoolName { get; set; }
|
|
public string ContactName { get; set; }
|
|
public string ContactNumber { get; set; }
|
|
}
|
|
}
|