mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-29 05:49:07 +08:00
12 lines
225 B
Go
12 lines
225 B
Go
|
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"`
|
||
|
}
|