commons-go/model/infra/InfraOS.go

15 lines
418 B
Go
Raw Normal View History

2018-04-26 16:37:59 +09:00
package infra
2018-04-12 18:38:04 +09:00
import (
"git.loafle.net/overflow/commons-go/core/util"
2018-04-26 16:37:59 +09:00
"git.loafle.net/overflow/commons-go/model/meta"
2018-04-12 18:38:04 +09:00
)
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"`
}