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