1Panel/backend/app/dto/website_group.go

11 lines
127 B
Go
Raw Normal View History

2022-10-28 17:04:57 +08:00
package dto
type WebSiteGroupCreateReq struct {
Name string
}
type WebSiteGroupUpdateReq struct {
ID uint
Name string
}