mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
8 lines
350 B
Go
8 lines
350 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]"`
|
|
}
|