選択できるのは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. }