12 lines
332 B
Go
Raw Normal View History

2017-10-20 18:09:07 +09:00
package model
type DiscoveryZone struct {
ID int `json:"id,omitempty"`
2017-10-20 18:20:13 +09:00
Network string `json:"network"`
2017-10-20 18:09:07 +09:00
IP string `json:"ip"`
Iface string `json:"iface"`
Mac string `json:"mac"`
FirstScanRange int64 `json:"firstScanRange"`
LastScanRange int64 `json:"lastScanRange"`
}