13 lines
223 B
Go
13 lines
223 B
Go
|
package models
|
||
|
|
||
|
import "github.com/fastenhealth/fasten-onprem/backend/pkg"
|
||
|
|
||
|
type BackgroundJobQueryOptions struct {
|
||
|
JobType *pkg.BackgroundJobType
|
||
|
Status *pkg.BackgroundJobStatus
|
||
|
|
||
|
//pagination
|
||
|
Limit int
|
||
|
Offset int
|
||
|
}
|