using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LoginModel { //user public class user { /// /// id /// public int id { get; set; } = 0; /// /// user_id /// public string user_id { get; set; } = ""; /// /// user_type /// public int user_type { get; set; } = 0; /// /// user_account /// public string user_account { get; set; } = ""; /// /// user_psw /// public string user_psw { get; set; } = ""; /// /// user_name /// public string user_name { get; set; } = ""; /// /// user_permission /// public string user_permission { get; set; } = ""; } }