IPagedResult.cs 354 B

1234567891011
  1. namespace Abp.Application.Services.Dto
  2. {
  3. /// <summary>
  4. /// This interface is defined to standardize to return a page of items to clients.
  5. /// </summary>
  6. /// <typeparam name="T">Type of the items in the <see cref="IListResult{T}.Items"/> list</typeparam>
  7. public interface IPagedResult<T> : IListResult<T>, IHasTotalCount
  8. {
  9. }
  10. }