9 lines
245 B
Go
9 lines
245 B
Go
|
package model
|
||
|
|
||
|
type NoAuthProbeDescriptionNetwork struct {
|
||
|
Name string `json:"name,omitempty"`
|
||
|
Address string `json:"address,omitempty"`
|
||
|
Gateway string `json:"gateway,omitempty"`
|
||
|
MacAddress string `json:"macAddress,omitempty"`
|
||
|
}
|