using System; using System.Text; using System.Collections.Generic; using System.Data; namespace XGL.Models { //user public class user { /// /// auto_increment /// public int id { get; set; } /// /// userno /// public string userno { get; set; } /// /// username /// public string username { get; set; } /// /// birthdate /// public string birthdate { get; set; } /// /// infactorydate /// public string infactorydate { get; set; } /// /// teamid /// public int teamid { get; set; } /// /// isdeleted /// public string isdeleted { get; set; } /// /// password /// public string password { get; set; } /// /// phone /// public string phone { get; set; } /// /// email /// public string email { get; set; } /// /// userkey /// public string userkey { get; set; } } }