Files
nginx-ui/model/external_notify.go
2025-08-03 11:43:45 +08:00

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"`
}