15 lines
449 B
Go
Raw Normal View History

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