| 1234567891011121314151617181920212223242526 |
- 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<app_type> ListAppType { get; set; } = new List<app_type>();
- public enterprise Enterprise { get; set; } = new enterprise();
- public server_entry ServerEntry { get; set; } = new server_entry();
- public List<enterprise_app> ListEnterpriseApp { get; set; } = new List<enterprise_app>();
- public List<enterprise_app_entry> ListEnterpriseAppEntry { get; set; } = new List<enterprise_app_entry>();
- public kf_particulars KfParticular { get; set; } = new kf_particulars();
- public List<kf_app_correlation> ListKfAppCorrelation { get; set; } = new List<kf_app_correlation>();
- }
- }
|