Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }