1
0
Fork 0
forked from goffee/core

add element paginator

This commit is contained in:
Zeni Kim 2025-04-17 01:49:43 -05:00
parent 5c3559c793
commit f276f4d61d
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,9 @@
package components
type ContentPagination struct {
PageStartRecord int
PageEndRecord int
TotalRecords int
PrevLink string
NextLink string
}