mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
16 lines
205 B
Go
16 lines
205 B
Go
package generic
|
|
|
|
type ListQueryCondition struct {
|
|
Key string
|
|
Op string
|
|
Value interface{}
|
|
}
|
|
|
|
type ListQuery []ListQueryCondition
|
|
|
|
type ListOptions struct {
|
|
Skip int
|
|
Limit int
|
|
Sort []ListSort
|
|
}
|