mirror of
https://github.com/davidallendj/configurator.git
synced 2025-12-20 03:27:02 -07:00
22 lines
375 B
Go
22 lines
375 B
Go
package configurator
|
|
|
|
type IPAddr struct {
|
|
IpAddress string `json:"IPAddress"`
|
|
Network string `json:"Network"`
|
|
}
|
|
|
|
type EthernetInterface struct {
|
|
Id string
|
|
Description string
|
|
MacAddress string
|
|
LastUpdate string
|
|
ComponentId string
|
|
Type string
|
|
IpAddresses []IPAddr
|
|
}
|
|
|
|
type DHCP struct {
|
|
Hostname string
|
|
MacAddress string
|
|
IpAddress []IPAddr
|
|
}
|