12 lines
115 B
Go
12 lines
115 B
Go
package model
|
|
|
|
// Server ..
|
|
type Server struct {
|
|
Common
|
|
Name string
|
|
Secret string
|
|
|
|
Host Host
|
|
State State
|
|
}
|