mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-19 20:08:24 +08:00
17 lines
465 B
Go
17 lines
465 B
Go
package model
|
|
|
|
type BackupAccount struct {
|
|
BaseModel
|
|
Name string `gorm:"unique;not null" json:"name"`
|
|
Type string `gorm:"unique;not null" json:"type"`
|
|
Bucket string `json:"bucket"`
|
|
AccessKey string `json:"accessKey"`
|
|
Credential string `json:"credential"`
|
|
BackupPath string `json:"backupPath"`
|
|
Vars string `json:"vars"`
|
|
|
|
RememberAuth bool `json:"rememberAuth"`
|
|
InUsed bool `json:"inUsed"`
|
|
EntryID uint `json:"entryID"`
|
|
}
|