mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-13 07:59:08 +08:00
16 lines
358 B
Go
16 lines
358 B
Go
package model
|
|
|
|
type ImageRepo struct {
|
|
BaseModel
|
|
|
|
Name string `gorm:"not null" json:"name"`
|
|
DownloadUrl string `json:"downloadUrl"`
|
|
Protocol string `json:"protocol"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
Auth bool `json:"auth"`
|
|
|
|
Status string `json:"status"`
|
|
Message string `json:"message"`
|
|
}
|