Files
scraper/model/house.go
T
2020-03-05 23:36:05 +11:00

23 lines
333 B
Go

package model
import (
"time"
"github.com/jinzhu/gorm"
)
type House struct {
gorm.Model
Suburb string
URL string
Address string
HouseType string
BedNumber int
SoldStatus string
Price int
Agent string
PriceWithheld bool
ActionDate time.Time
City string
}