12 lines
217 B
Go
Raw Normal View History

2024-06-02 20:15:04 +08:00
package models
2024-06-02 20:45:56 +08:00
import "gorm.io/datatypes"
2024-06-02 20:15:04 +08:00
type Badge struct {
BaseModel
2024-06-02 20:45:56 +08:00
Type string `json:"type"`
Metadata datatypes.JSONMap `json:"metadata"`
AccountID uint `json:"account_id"`
2024-06-02 20:15:04 +08:00
}