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.

37 line
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Example.Models
  7. {
  8. public class ShopPacksModule
  9. {
  10. public List<packs> packData { get; set; }
  11. public string currentPage { get; set; }
  12. public string totalPages { get; set; }
  13. }
  14. public class packs
  15. {
  16. public string PositionTitle { get; set; }
  17. public string packID { get; set; }
  18. public string name { get; set; }
  19. public string price { get; set; }
  20. public string description { get; set; }
  21. public string imageURL { get; set; }
  22. public string categoryName { get; set; }
  23. public string packLimit { get; set; }
  24. public string packLimitTime { get; set; }
  25. public string packLinkedLimit { get; set; }
  26. public string excludedRegions { get; set; }
  27. public string exclusiveRegions { get; set; }
  28. public bool OverlayHidden { get; set; }
  29. }
  30. public class CategoriePackList
  31. {
  32. public Dictionary<string, packs> Categories { get; set; }
  33. }
  34. }