Generator Changes at 9/27/2025 8:46:36 AM
This commit is contained in:
22
src/CMSMicroservice.Application/Common/Models/MetaData.cs
Normal file
22
src/CMSMicroservice.Application/Common/Models/MetaData.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace CMSMicroservice.Application.Common.Models;
|
||||
|
||||
public class MetaData
|
||||
{
|
||||
//صفحه جاری
|
||||
public long CurrentPage { get; set; }
|
||||
|
||||
//تعداد کل صفحات
|
||||
public long TotalPage { get; set; }
|
||||
|
||||
//تعداد در هر صفحه
|
||||
public long PageSize { get; set; }
|
||||
|
||||
//تعداد کل آیتمها
|
||||
public long TotalCount { get; set; }
|
||||
|
||||
//قبلی دارد؟
|
||||
public bool HasPrevious { get; set; }
|
||||
|
||||
//بعدی دارد؟
|
||||
public bool HasNext { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user