12 lines
258 B
Go
12 lines
258 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Colour struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
Name string `gorm:"not null" json:"name"`
|
|
Code string `json:"code"` // contoh: HEX (#000000) atau RGB
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|