Passport/pkg/internal/models/preferences.go

12 lines
235 B
Go
Raw Normal View History

2024-09-17 06:50:05 +00:00
package models
import "gorm.io/datatypes"
type PreferenceNotification struct {
BaseModel
Config datatypes.JSONMap `json:"config"`
AccountID uint `json:"account_id"`
Account Account `json:"account"`
}