mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 18:05:59 +08:00
10 lines
211 B
Go
10 lines
211 B
Go
package dto
|
|
|
|
type GroupCreate struct {
|
|
Name string `json:"name" validate:"required"`
|
|
Type string `json:"type" validate:"required"`
|
|
}
|
|
|
|
type GroupUpdate struct {
|
|
Name string `json:"name" validate:"required"`
|
|
}
|