1Panel/agent/app/model/setting.go
2024-08-14 10:43:32 +08:00

9 lines
152 B
Go

package model
type Setting struct {
BaseModel
Key string `json:"key" gorm:"not null;"`
Value string `json:"value"`
About string `json:"about"`
}