using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Reflection; using System.Linq.Expressions; namespace Bowin.Common.Linq.Entity { [Serializable] public class GridResultSet : IGridResultSet { private List _rows; public List rows { get { return _rows; } set { _rows = value; } } public int total { get; set; } } }