mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
755 B
22 lines
755 B
package dto
|
|
|
|
import "github.com/1Panel-dev/1Panel/backend/app/model"
|
|
|
|
type WebsiteDnsAccountDTO struct {
|
|
model.WebsiteDnsAccount
|
|
Authorization map[string]string `json:"authorization"`
|
|
}
|
|
|
|
type WebsiteDnsAccountCreate struct {
|
|
Name string `json:"name" validate:"required"`
|
|
Type string `json:"type" validate:"required"`
|
|
Authorization map[string]string `json:"authorization" validate:"required"`
|
|
}
|
|
|
|
type WebsiteDnsAccountUpdate struct {
|
|
ID uint `json:"id" validate:"required"`
|
|
Name string `json:"name" validate:"required"`
|
|
Type string `json:"type" validate:"required"`
|
|
Authorization map[string]string `json:"authorization" validate:"required"`
|
|
}
|