mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 22:12:23 +08:00
9 lines
191 B
Go
9 lines
191 B
Go
package model
|
|
|
|
type ConfigBackup struct {
|
|
Model
|
|
Name string `json:"name"`
|
|
FilePath string `json:"filepath" gorm:"column:filepath"`
|
|
Content string `json:"content" gorm:"type:text"`
|
|
}
|