mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 18:05:59 +08:00
16 lines
318 B
Go
16 lines
318 B
Go
package dto
|
|
|
|
type GroupOperate struct {
|
|
Name string `json:"name" validate:"required"`
|
|
Type string `json:"type" validate:"required"`
|
|
}
|
|
|
|
type GroupSearch struct {
|
|
Type string `json:"type" validate:"required"`
|
|
}
|
|
|
|
type GroupInfo struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
}
|