您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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