This commit is contained in:
2025-08-30 20:52:27 -04:00
parent e7ebccd4a9
commit f53959b38f
31 changed files with 789 additions and 479 deletions

View File

@@ -0,0 +1,13 @@
package models
type NotificationType int
const (
NotificationTypeSuccess NotificationType = iota
NotificationTypeError
)
type Notification struct {
Content string
Type NotificationType
}