EventViewModel.cs 757 B

123456789101112131415161718192021222324252627
  1. using SuperAdmin.Models.Object;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace SuperAdmin.Models.View
  7. {
  8. public class EventViewModel
  9. {
  10. public Topics topics { get; set; }
  11. public Provinces provinces { get; set; }
  12. public RowStructure parent { get; set; }
  13. public RowStructure now { get; set; }
  14. public RowStructures events { get; set; }
  15. // event showing
  16. public String page { get; set; }
  17. public String totalPage { get; set; }
  18. public String status { get; set; }
  19. public RowStructures categories { get; set; }
  20. public RowStructures columns { get; set; }
  21. public string action { get; set; }
  22. }
  23. }