2017-11-08 09:50:44 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
type DiscoveryStartInfo struct {
|
2017-12-01 06:04:31 +00:00
|
|
|
StartIP string `json:"startIp,omitempty"`
|
|
|
|
EndIP string `json:"endIP,omitempty"`
|
|
|
|
ExcludeIP string `json:"excludeIp,omitempty"`
|
|
|
|
StartPort string `json:"startPort,omitempty"`
|
|
|
|
EndPort string `json:"endPort,omitempty"`
|
|
|
|
Services []string `json:"services,omitempty"`
|
|
|
|
}
|