11 lines
340 B
Go
11 lines
340 B
Go
|
package model
|
||
|
|
||
|
type DiscoveryHost struct {
|
||
|
FirstScanRange string `json:"firstScanRange,omitempty"`
|
||
|
LastScanRange string `json:"lastScanRange,omitempty"`
|
||
|
ExcludeHosts []string `json:"excludeHosts,omitempty"`
|
||
|
IncludeHosts []string `json:"includeHosts,omitempty"`
|
||
|
|
||
|
DiscoveryPort *DiscoveryPort `json:"discoveryPort,omitempty"`
|
||
|
}
|