Files
TWA-App/TWASys-App/Models/IPaging.cs
2025-10-22 09:41:40 +07:00

13 lines
223 B
C#

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