overflow_discovery/net/model/zone.go
crusader 1481ab4a7f ing
2017-10-20 18:20:13 +09:00

12 lines
332 B
Go

package model
type DiscoveryZone struct {
ID int `json:"id,omitempty"`
Network string `json:"network"`
IP string `json:"ip"`
Iface string `json:"iface"`
Mac string `json:"mac"`
FirstScanRange int64 `json:"firstScanRange"`
LastScanRange int64 `json:"lastScanRange"`
}