using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Model.ModelVm { public class IndexPage { public int Page { get; set; } = 1; public int Limit { get; set; } = 10; } }