package models import "time" type Colour struct { ID uint `gorm:"primaryKey" json:"id"` Code string `json:"code"` Name string `gorm:"not null" json:"name"` Hex string `json:"hex"` // Hexadecimal color code CreatedAt time.Time UpdatedAt time.Time }