namespace Abp.Application.Services.Dto
{
///
/// This interface is defined to standardize to request a paged result.
///
public interface IPagedResultRequest : ILimitedResultRequest
{
///
/// Skip count (beginning of the page).
///
int SkipCount { get; set; }
}
}