namespace Abp.Application.Services.Dto { /// /// This interface is defined to standardize to return a page of items to clients. /// /// Type of the items in the list public interface IPagedResult : IListResult, IHasTotalCount { } }