10 lines
214 B
Go
10 lines
214 B
Go
|
package model
|
||
|
|
||
|
import "git.loafle.net/overflow/commons-go/core/util"
|
||
|
|
||
|
type InfraMachine struct {
|
||
|
Infra
|
||
|
Meta string `json:"meta,omitempty"`
|
||
|
CreateDate util.Timestamp `json:"createDate,omitempty"`
|
||
|
}
|