9 lines
172 B
Go
9 lines
172 B
Go
package model
|
|
|
|
// ViewCursor aggregates pagination and archival filters for list queries
|
|
type ViewCursor struct {
|
|
Limit *int64
|
|
Offset *int64
|
|
IsArchived *bool
|
|
}
|