LoginResponse.cs 871 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LoginModel.HttpResponse
  7. {
  8. [Serializable]
  9. public class LoginResponse : BaseResponse
  10. {
  11. public List<app_type> ListAppType { get; set; } = new List<app_type>();
  12. public enterprise Enterprise { get; set; } = new enterprise();
  13. public server_entry ServerEntry { get; set; } = new server_entry();
  14. public List<enterprise_app> ListEnterpriseApp { get; set; } = new List<enterprise_app>();
  15. public List<enterprise_app_entry> ListEnterpriseAppEntry { get; set; } = new List<enterprise_app_entry>();
  16. public kf_particulars KfParticular { get; set; } = new kf_particulars();
  17. public List<kf_app_correlation> ListKfAppCorrelation { get; set; } = new List<kf_app_correlation>();
  18. }
  19. }