You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PaggingCollection.cs 355B

123456789101112
  1. using System.Collections.ObjectModel;
  2. namespace BlackRock.Reporting.API.Core.Models
  3. {
  4. public class PaggingCollection<T> : Collection<T>, IPaggingAndFiltering where T : class
  5. {
  6. public string? SortBy {set;get;}
  7. public bool IsSortAscending {set;get;}
  8. public int Page {set;get;}
  9. public int PageSize {set;get;}
  10. }
  11. }