2024-10-21 23:00:51 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type ServerGroupForm struct {
|
2024-11-16 20:57:03 +08:00
|
|
|
Name string `json:"name" minLength:"1"`
|
2024-10-21 23:00:51 +08:00
|
|
|
Servers []uint64 `json:"servers"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ServerGroupResponseItem struct {
|
|
|
|
Group ServerGroup `json:"group"`
|
|
|
|
Servers []uint64 `json:"servers"`
|
|
|
|
}
|