mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-12 23:49:18 +08:00
9 lines
152 B
Go
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"`
|
|
}
|