PageDataProviderArgs.cs 710 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Azylee.WinformSkin.UserWidgets.PageWidgets
  6. {
  7. public class PageDataProviderArgs
  8. {
  9. public PageDataProviderArgs()
  10. {
  11. }
  12. public PageDataProviderArgs(int current, int pageSize)
  13. {
  14. Current = current;
  15. PageSize = pageSize;
  16. }
  17. public PageDataProviderArgs(int current, int pageSize, int total)
  18. {
  19. Current = current;
  20. Total = total;
  21. PageSize = pageSize;
  22. }
  23. public int Current { get; set; }
  24. public int Total { get; set; }
  25. public int PageSize { get; set; }
  26. }
  27. }