You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/labs/Teacher/TeacherExt/Models/ListItem.cs

20 lines
607 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TeacherExt.Models
{
public class ListItem
{
public string person_name { get; internal set; }
public string sex { get; internal set; }
public string nation { get; internal set; }
public string nation_name { get; internal set; }
public string placeofbirth { get; internal set; }
public string org_name { get; internal set; }
public int person_id { get; internal set; }
public string bureau_name { get; internal set; }
}
}