2022-10-09 16:17:15 +08:00
|
|
|
package dto
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type ImageRepoCreate struct {
|
|
|
|
Name string `json:"name" validate:"required"`
|
|
|
|
DownloadUrl string `json:"downloadUrl"`
|
2022-10-10 16:47:05 +08:00
|
|
|
Protocol string `json:"protocol"`
|
2022-10-09 16:17:15 +08:00
|
|
|
Username string `json:"username"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
Auth bool `json:"auth"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ImageRepoUpdate struct {
|
|
|
|
ID uint `json:"id"`
|
|
|
|
DownloadUrl string `json:"downloadUrl"`
|
2022-10-10 16:47:05 +08:00
|
|
|
Protocol string `json:"protocol"`
|
2022-10-09 16:17:15 +08:00
|
|
|
Username string `json:"username"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
Auth bool `json:"auth"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ImageRepoInfo struct {
|
|
|
|
ID uint `json:"id"`
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
DownloadUrl string `json:"downloadUrl"`
|
2022-10-10 16:47:05 +08:00
|
|
|
Protocol string `json:"protocol"`
|
2022-10-09 16:17:15 +08:00
|
|
|
Username string `json:"username"`
|
|
|
|
Auth bool `json:"auth"`
|
2022-12-18 23:00:24 +08:00
|
|
|
|
|
|
|
Status string `json:"status"`
|
|
|
|
Message string `json:"message"`
|
2022-10-09 16:17:15 +08:00
|
|
|
}
|
2022-10-10 15:14:49 +08:00
|
|
|
|
|
|
|
type ImageRepoOption struct {
|
|
|
|
ID uint `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
DownloadUrl string `json:"downloadUrl"`
|
|
|
|
}
|
2022-12-20 13:23:01 +08:00
|
|
|
|
|
|
|
type ImageRepoDelete struct {
|
2023-02-23 11:39:47 +08:00
|
|
|
Ids []uint `json:"ids" validate:"required"`
|
2022-12-20 13:23:01 +08:00
|
|
|
}
|