photoprism/internal/forms/photo-search.go

20 lines
577 B
Go

package forms
import (
"time"
)
type PhotoSearchForm struct {
Query string `form:"q"`
Tags string `form:"tags"`
Cat string `form:"cat"`
Country string `form:"country"`
CameraID int `form:"camera"`
Order string `form:"order"`
Count int `form:"count" binding:"required"`
Offset int `form:"offset"`
Before time.Time `form:"before" time_format:"2006-01-02"`
After time.Time `form:"after" time_format:"2006-01-02"`
FavoritesOnly bool `form:"category"`
}