mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-24 02:59:16 +08:00
21 lines
468 B
Go
21 lines
468 B
Go
package dto
|
|
|
|
type CreateOrUpdateAlert struct {
|
|
AlertTitle string `json:"alertTitle"`
|
|
AlertType string `json:"alertType"`
|
|
AlertCount uint `json:"alertCount"`
|
|
EntryID uint `json:"entryID"`
|
|
}
|
|
|
|
type AlertBase struct {
|
|
AlertType string `json:"alertType"`
|
|
EntryID uint `json:"entryID"`
|
|
}
|
|
|
|
type PushAlert struct {
|
|
TaskName string `json:"taskName"`
|
|
AlertType string `json:"alertType"`
|
|
EntryID uint `json:"entryID"`
|
|
Param string `json:"param"`
|
|
}
|