mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-13 19:21:19 +08:00
10 lines
127 B
Go
10 lines
127 B
Go
package dto
|
|
|
|
type WebSiteGroupCreateReq struct {
|
|
Name string
|
|
}
|
|
|
|
type WebSiteGroupUpdateReq struct {
|
|
ID uint
|
|
Name string
|
|
}
|