mirror of
https://github.com/project-zot/zot.git
synced 2025-02-10 23:39:39 -05:00
9 lines
112 B
Go
9 lines
112 B
Go
package model
|
|
|
|
type SortCriteria string
|
|
|
|
type PageInput struct {
|
|
Limit int
|
|
Offset int
|
|
SortBy SortCriteria
|
|
}
|