123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class PageDto<T>
- {
- public PageDto(int total, T rows)
- {
- Total = total;
- Rows = rows;
- }
- public int Total { get; set; }
- public T Rows { get; set; }
- }
- }
|