mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 22:12:23 +08:00
10 lines
450 B
Go
10 lines
450 B
Go
package model
|
|
|
|
type ExternalNotify struct {
|
|
Model
|
|
Type string `json:"type" cosy:"add:required;update:omitempty" gorm:"index"`
|
|
Language string `json:"language" cosy:"add:required;update:omitempty" gorm:"index"`
|
|
Config map[string]string `json:"config" cosy:"add:required;update:omitempty" gorm:"serializer:json[aes]"`
|
|
Enabled bool `json:"enabled" cosy:"add:omitempty;update:omitempty" gorm:"default:1"`
|
|
}
|