mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
17 lines
316 B
Go
17 lines
316 B
Go
package model
|
|
|
|
type NotificationType int
|
|
|
|
const (
|
|
NotificationError NotificationType = iota
|
|
NotificationWarning
|
|
NotificationInfo
|
|
NotificationSuccess
|
|
)
|
|
|
|
type Notification struct {
|
|
Model
|
|
Type NotificationType `json:"type"`
|
|
Title string `json:"title"`
|
|
Details string `json:"details"`
|
|
}
|