AnthoLume/web/models/notification.go
2025-08-30 20:53:09 -04:00

14 lines
197 B
Go

package models
type NotificationType int
const (
NotificationTypeSuccess NotificationType = iota
NotificationTypeError
)
type Notification struct {
Content string
Type NotificationType
}