You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
476 B
22 lines
476 B
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"`
|
|
}
|
|
|