| 123456789101112131415161718 | package modeltype NotificationType intconst (	NotificationError NotificationType = iota	NotificationWarning	NotificationInfo	NotificationSuccess)type Notification struct {	Model	Type    NotificationType `json:"type"`	Title   string           `json:"title"`	Content string           `json:"content"`	Details any              `json:"details" gorm:"serializer:json"`}
 |