mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
10 lines
112 B
Go
10 lines
112 B
Go
|
package model
|
||
|
|
||
|
type SortCriteria string
|
||
|
|
||
|
type PageInput struct {
|
||
|
Limit int
|
||
|
Offset int
|
||
|
SortBy SortCriteria
|
||
|
}
|