hdong:hard code page size to 10 for Qtoss project currently.

This commit is contained in:
YouWeiDH 2024-04-25 15:43:40 +08:00
parent 42b0e37ff3
commit e18845e4ae

View file

@ -3,7 +3,7 @@ namespace BotSharp.Abstraction.Utilities;
public class Pagination
{
private int _page;
private int _size;
private int _size => 10;
public int Page
{
@ -20,10 +20,10 @@ public class Pagination
return _size;
}
set
{
_size = value;
}
//set
//{
// _size = value;
//}
}
public int Offset