Passport/pkg/internal/models/preferences.go
2024-09-17 14:50:05 +08:00

12 lines
235 B
Go

package models
import "gorm.io/datatypes"
type PreferenceNotification struct {
BaseModel
Config datatypes.JSONMap `json:"config"`
AccountID uint `json:"account_id"`
Account Account `json:"account"`
}