IPageRequest.cs 222 B

123456789101112
  1. using VCommon.VApplication.DataAnnotations;
  2. namespace VCommon.VApplication.Dto
  3. {
  4. public interface IPageRequest
  5. {
  6. int Skip { get; set; }
  7. [ExampleValue(10)]
  8. int Take { get; set; }
  9. }
  10. }