14 lines
317 B
Go
14 lines
317 B
Go
package infra
|
|
|
|
import (
|
|
"git.loafle.net/overflow/commons-go/core/util"
|
|
)
|
|
|
|
type InfraHost struct {
|
|
Infra
|
|
InfraOS *InfraOS `json:"os,omitempty"`
|
|
IP string `json:"ip,omitempty"`
|
|
Mac string `json:"mac,omitempty"`
|
|
CreateDate *util.Timestamp `json:"createDate,omitempty"`
|
|
}
|