mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-13 01:56:22 +08:00
13 lines
362 B
Go
13 lines
362 B
Go
package dto
|
|
|
|
import "github.com/1Panel-dev/1Panel/backend/app/model"
|
|
|
|
type WebsiteSSLDTO struct {
|
|
model.WebSiteSSL
|
|
}
|
|
|
|
type WebsiteSSLCreate struct {
|
|
Name string `json:"name" validate:"required"`
|
|
Type string `json:"type" validate:"required"`
|
|
Authorization map[string]string `json:"authorization" validate:"required"`
|
|
}
|