mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
574 B
26 lines
574 B
package dto
|
|
|
|
type GroupCreate struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name" validate:"required"`
|
|
Type string `json:"type" validate:"required"`
|
|
}
|
|
|
|
type GroupSearch struct {
|
|
Type string `json:"type" validate:"required"`
|
|
}
|
|
|
|
type GroupUpdate struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type" validate:"required"`
|
|
IsDefault bool `json:"isDefault"`
|
|
}
|
|
|
|
type GroupInfo struct {
|
|
ID uint `json:"id"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
IsDefault bool `json:"isDefault"`
|
|
}
|