mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
12 lines
243 B
Go
12 lines
243 B
Go
package model
|
|
|
|
type ServerGroupForm struct {
|
|
Name string `json:"name" minLength:"1"`
|
|
Servers []uint64 `json:"servers"`
|
|
}
|
|
|
|
type ServerGroupResponseItem struct {
|
|
Group ServerGroup `json:"group"`
|
|
Servers []uint64 `json:"servers"`
|
|
}
|