Files
MikaltoResort/ManagementApp/Models/IPaging.cs
2025-06-04 14:17:32 +07:00

13 lines
226 B
C#

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