using System.Collections.ObjectModel; namespace BlackRock.Reporting.API.Core.Models { public class PagedCollection : Collection where T : class { public int Page { set; get; } public int PageSize { set; get; } public int TotalCount { set; get; } } }