Files
VinFontApp/SysApp/Models/IPaging.cs
2025-05-06 02:04:49 +07:00

13 lines
219 B
C#

namespace SysApp.Models
{
public interface IPaging
{
bool IsFirstQuery { set; get; }
int PageSize { set; get; }
int PageNumber { set; get; }
int MaxRow { set; get; }
}
}