IGridResultSet.cs 286 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Common.Linq.Entity
  6. {
  7. public interface IGridResultSet<TEntity>
  8. {
  9. int total { get; set; }
  10. System.Collections.Generic.List<TEntity> rows { get; set; }
  11. }
  12. }