using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WorkFlowApi.ViewModels { public class PageInput { /// /// 页码 /// public int page { get; set; } = 1; /// /// 每页数量 /// public int pagesize { get; set; } = 10; } }