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