using System; using System.Collections.Generic; using System.Text; namespace GxPress.Result.App.Flow { public class ListResult { /// /// 当前页 /// public int Count { get; set; } /// /// 每页显示多少项 /// public IEnumerable Items { get; set; } } }