jobs-monorepo/internal/models/Job.go
Elshimy Ziad Magdy Taha 7bf35ccb6b refactor
2025-09-29 22:44:30 +05:00

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)
}