mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-20 08:49:16 +08:00
18 lines
443 B
Go
18 lines
443 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type BackupAccount struct {
|
|
BaseModel
|
|
Name string `gorm:"not null" json:"name"`
|
|
Type string `gorm:"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"`
|
|
DeletedAt time.Time `json:"deletedAt"`
|
|
}
|