2017-11-08 09:50:44 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
meta "git.loafle.net/overflow/overflow_commons_go/modules/meta/model"
|
2017-12-01 06:04:31 +00:00
|
|
|
util "git.loafle.net/overflow/overflow_commons_go/util"
|
2017-11-08 09:50:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type InfraOS struct {
|
|
|
|
Infra
|
|
|
|
InfraMachine *InfraMachine `json:"machine,omitempty"`
|
2017-12-01 06:04:31 +00:00
|
|
|
Meta string `json:"meta,omitempty"`
|
|
|
|
CreateDate util.Timestamp `json:"createDate,omitempty"`
|
2017-11-08 09:50:44 +00:00
|
|
|
MetaInfraVendor *meta.MetaInfraVendor `json:"vendor,omitempty"`
|
2017-12-01 06:04:31 +00:00
|
|
|
}
|