1Panel/agent/app/model/setting.go

9 lines
152 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package model
type Setting struct {
BaseModel
2024-08-14 10:43:32 +08:00
Key string `json:"key" gorm:"not null;"`
Value string `json:"value"`
About string `json:"about"`
2024-07-23 14:48:37 +08:00
}