mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-12 09:34:58 +08:00
10 lines
121 B
Go
10 lines
121 B
Go
package dto
|
|
|
|
type WebSiteGroupCreate struct {
|
|
Name string
|
|
}
|
|
|
|
type WebSiteGroupUpdate struct {
|
|
ID uint
|
|
Name string
|
|
}
|