12 lines
235 B
Go
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"`
|
||
|
}
|