14 lines
197 B
Go
14 lines
197 B
Go
package models
|
|
|
|
type NotificationType int
|
|
|
|
const (
|
|
NotificationTypeSuccess NotificationType = iota
|
|
NotificationTypeError
|
|
)
|
|
|
|
type Notification struct {
|
|
Content string
|
|
Type NotificationType
|
|
}
|