jobs-monorepo/internal/models/Job.go
Elshimy Ziad Magdy Taha c341cb8ff8 init
2025-09-28 21:00:08 +05:00

17 lines
395 B
Go

package models
type Job struct {
ID int64
Title string
Company string
CompanyLink string
Location string
JobLink string
}
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)
GeoId string `json:"geoId"` // Geographic location ID
}