mc-client-updater-server/pkg/dao/entity/metadata.go

8 lines
173 B
Go
Raw Permalink Normal View History

2024-01-07 15:13:35 +08:00
package entity
type Metadata struct {
ID uint `json:"id"`
Key string `gorm:"unique;not null" json:"key"`
Value string `gorm:"not null;default:''" json:"value"`
}