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 }