config_backup.go 191 B

12345678
  1. package model
  2. type ConfigBackup struct {
  3. Model
  4. Name string `json:"name"`
  5. FilePath string `json:"filepath" gorm:"column:filepath"`
  6. Content string `json:"content" gorm:"type:text"`
  7. }