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