You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
587 B

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Common.Model.MobileV2
  7. {
  8. public class DashBoardV2
  9. {
  10. public LoginResponse loginResponse { get; set; }
  11. public List<BannerImages> bannerImages { get; set; }
  12. }
  13. public class BannerImages
  14. {
  15. public string fileName { get; set; }
  16. public string fileTitle { get; set; }
  17. public string filePath { get; set; }
  18. public bool Redirect { get; set; }
  19. public string RedirectURL { get; set; }
  20. }
  21. }