2017-11-08 09:50:44 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import "encoding/json"
|
|
|
|
|
|
|
|
type Zone struct {
|
2017-12-01 06:04:31 +00:00
|
|
|
ID json.Number `json:"id,Number,omitempty"`
|
|
|
|
Network string `json:"network,omitempty"`
|
|
|
|
IP string `json:"ip,omitempty"`
|
|
|
|
Iface string `json:"iface,omitempty"`
|
|
|
|
Mac string `json:"mac,omitempty"`
|
|
|
|
FirstScanRage json.Number `json:"firstScanRange,omitempty"`
|
|
|
|
LastScanRange json.Number `json:"lastScanRange,omitempty"`
|
|
|
|
}
|