Passport/pkg/models/badges.go
2024-06-02 20:15:04 +08:00

11 lines
186 B
Go

package models
type Badge struct {
BaseModel
Type string `json:"type"`
Label string `json:"label"`
Color string `json:"color"`
AccountID uint `json:"account_id"`
}