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 402B

12345678910111213
  1. using System.Collections.ObjectModel;
  2. namespace BlackRock.Reporting.API.Mediator.Model
  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. public string EmailDomain {get;set;}
  11. }
  12. }