using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTOToEntity { public class PageResponse { public IEnumerable Items { get; set; } public long TotalCount { get; set; } public PageResponse(IEnumerable items, int totalCount) { Items = items; TotalCount = totalCount; } } }