PageDto.cs 347 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Core.Dtos
  5. {
  6. public class PageDto<T>
  7. {
  8. public PageDto(int total, T rows)
  9. {
  10. Total = total;
  11. Rows = rows;
  12. }
  13. public int Total { get; set; }
  14. public T Rows { get; set; }
  15. }
  16. }