9 lines
246 B
Go
9 lines
246 B
Go
|
package model
|
||
|
|
||
|
import "git.loafle.net/overflow/overflow_commons_go/modules/timestamp/model"
|
||
|
|
||
|
type InfraMachine struct {
|
||
|
Infra
|
||
|
Meta string `json:"meta,omitempty"`
|
||
|
CreateDate timestamp.Timestamp `json:"createDate,omitempty"`
|
||
|
}
|