using System.Collections.Generic; namespace DI_Electrical.Model { public class PageModel { public List Rows { get; set; } public int Total { get; set; } public int Records { get; set; } } }