19 lines
418 B
Go
19 lines
418 B
Go
package models
|
|
|
|
import "github.com/jobs-scraper/internal/domain"
|
|
|
|
type Job struct {
|
|
ID int64
|
|
Title string
|
|
Company string
|
|
CompanyLink string
|
|
Location string
|
|
JobLink string
|
|
Provider domain.JobProvider
|
|
}
|
|
|
|
type SearchQuery struct {
|
|
Keywords string `json:"keywords"`
|
|
Location string `json:"location"`
|
|
FWT string `json:"f_WT"` // Work type filter (1=onsite, 2=remote, 3=hybrid)
|
|
}
|