mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
0a04b2a4ed
Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com>
9 lines
112 B
Go
9 lines
112 B
Go
package model
|
|
|
|
type SortCriteria string
|
|
|
|
type PageInput struct {
|
|
Limit int
|
|
Offset int
|
|
SortBy SortCriteria
|
|
}
|