using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LoginModel.HttpResponse { [Serializable] public class LoginResponse : BaseResponse { public List ListAppType { get; set; } = new List(); public enterprise Enterprise { get; set; } = new enterprise(); public server_entry ServerEntry { get; set; } = new server_entry(); public List ListEnterpriseApp { get; set; } = new List(); public List ListEnterpriseAppEntry { get; set; } = new List(); public kf_particulars KfParticular { get; set; } = new kf_particulars(); public List ListKfAppCorrelation { get; set; } = new List(); } }