using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Common.Linq.Entity { public interface IGridResultSet { int total { get; set; } System.Collections.Generic.List rows { get; set; } } }