14 lines
544 B
Go
14 lines
544 B
Go
package infra
|
|
|
|
import "git.loafle.net/overflow/commons-go/model/meta"
|
|
|
|
type InfraZone struct {
|
|
Infra
|
|
MetaTargetZoneType *meta.MetaTargetZoneType `json:"metaTargetZoneType,omitempty"`
|
|
MetaIPType *meta.MetaIPType `json:"metaIPType,omitempty"`
|
|
Network string `json:"network,omitempty"`
|
|
Iface string `json:"iface,omitempty"`
|
|
Address string `json:"address,omitempty"`
|
|
Mac string `json:"mac,omitempty"`
|
|
}
|