15 lines
418 B
Go
15 lines
418 B
Go
package infra
|
|
|
|
import (
|
|
"git.loafle.net/overflow/commons-go/core/util"
|
|
"git.loafle.net/overflow/commons-go/model/meta"
|
|
)
|
|
|
|
type InfraOS struct {
|
|
Infra
|
|
InfraMachine *InfraMachine `json:"machine,omitempty"`
|
|
Meta string `json:"meta,omitempty"`
|
|
CreateDate *util.Timestamp `json:"createDate,omitempty"`
|
|
MetaInfraVendor *meta.MetaInfraVendor `json:"vendor,omitempty"`
|
|
}
|