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