18 lines
266 B
Go
18 lines
266 B
Go
package medias
|
|
|
|
import (
|
|
"backend/database/models/qvyun/public/model"
|
|
"backend/pkg/db"
|
|
)
|
|
|
|
type ListFilter struct {
|
|
db.Pagination
|
|
Title *string `json:"title"`
|
|
Bought *bool `json:"bought"`
|
|
}
|
|
|
|
type ListItem struct {
|
|
model.Medias
|
|
Bought bool `json:"bought"`
|
|
}
|