package models import "time" type Size struct { ID uint `gorm:"primaryKey" json:"id"` Name string `gorm:"not null" json:"name"` // contoh: S, M, L, XL Description string `json:"description"` // opsional, seperti "Small", "Large" CreatedAt time.Time UpdatedAt time.Time }