using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LoginModel { //app_authorization public class app_authorization { public int id { get; set; } = 0; /// /// ent_id /// public string ent_id { get; set; } = ""; /// /// app_id /// public string app_id { get; set; } = ""; /// /// authorization_info /// public string authorization_info { get; set; } = ""; /// /// authorize_status /// public int authorize_status { get; set; } = 0; /// /// authorizer_access_token /// public string authorizer_access_token { get; set; } = ""; /// /// expires_in /// public int expires_in { get; set; } = 0; /// /// authorizer_refresh_token /// public string authorizer_refresh_token { get; set; } = ""; /// /// account_aasic_info /// public string account_aasic_info { get; set; } = ""; /// /// create_time /// public DateTime create_time { get; set; } /// /// update_time /// public DateTime update_time { get; set; } /// /// refresh_token_time /// public DateTime refresh_token_time { get; set; } /// /// app_type_name /// public string app_type_name { get; set; } = ""; } }