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.
1Panel/backend/app/dto/website_acme_account.go

12 lines
225 B

package dto
import "github.com/1Panel-dev/1Panel/backend/app/model"
type WebsiteAcmeAccountDTO struct {
model.WebsiteAcmeAccount
}
type WebsiteAcmeAccountCreate struct {
Email string `json:"email" validate:"required"`
}