using SuperAdmin.Models.Object; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SuperAdmin.Models.View { public class EventViewModel { public Topics topics { get; set; } public Provinces provinces { get; set; } public RowStructure parent { get; set; } public RowStructure now { get; set; } public RowStructures events { get; set; } // event showing public String page { get; set; } public String totalPage { get; set; } public String status { get; set; } public RowStructures categories { get; set; } public RowStructures columns { get; set; } public string action { get; set; } } }