hdong: remove the limit.

This commit is contained in:
YouWeiDH 2024-05-29 10:36:27 +08:00
parent c9428cd965
commit 8a9b6f319b

View file

@ -13,11 +13,8 @@ public class Pagination
public int Size
{
get
get
{
if (_size <= 0) return 20;
if (_size > 100) return 100;
return _size;
}
set