package models type Job struct { ID int `json:"id"` Title string `json:"title"` Description string `json:"description"` Status string `json:"status"` } type Asset struct { ID int `json:"id"` Name string `json:"name"` Type string `json:"type"` Location string `json:"location"` } type Company struct { ID int `json:"id"` Name string `json:"name"` Address string `json:"address"` Phone string `json:"phone"` }