| 1234567891011 |
- namespace Abp.Application.Services.Dto
- {
- /// <summary>
- /// This interface is defined to standardize to return a page of items to clients.
- /// </summary>
- /// <typeparam name="T">Type of the items in the <see cref="IListResult{T}.Items"/> list</typeparam>
- public interface IPagedResult<T> : IListResult<T>, IHasTotalCount
- {
- }
- }
|