Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

22 lines
442B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace HealthMonitor.Util.Models
  3. {
  4. /// <summary>
  5. ///
  6. /// </summary>
  7. public class Pagation
  8. {
  9. /// <summary>
  10. /// 页码
  11. /// </summary>
  12. [Required]
  13. public int pageIndex { get; set; } = 1;
  14. /// <summary>
  15. /// 分页大小
  16. /// </summary>
  17. [Required]
  18. public int pageSize { get; set; } = 10;
  19. }
  20. }