using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.Configuration; //using System.Data.OleDb; //using System.Data.SqlClient; using System.Collections; using Newtonsoft.Json; using System.ComponentModel; using System.Globalization; namespace Model.ViewModel { /// /// Summary description for admin /// public class admin { public admin() { // // TODO: Add constructor logic here // } public int? num { get; set; } public string u_id { get; set; } public string u_name { get; set; } public string power { get; set; } public bool online { get; set; } public bool? removeExist { get; set; } } }