| 123456789101112131415 |
- using System;
- using System.ComponentModel.DataAnnotations;
- namespace Abp.Application.Services.Dto
- {
- /// <summary>
- /// Simply implements <see cref="IPagedResultRequest"/>.
- /// </summary>
- [Serializable]
- public class PagedResultRequestDto : LimitedResultRequestDto, IPagedResultRequest
- {
- [Range(0, int.MaxValue)]
- public virtual int SkipCount { get; set; }
- }
- }
|