11 lines
308 B
Go
11 lines
308 B
Go
|
package model
|
||
|
|
||
|
import "git.loafle.net/overflow/overflow_commons_go/modules/timestamp/model"
|
||
|
|
||
|
type InfraOSApplication struct {
|
||
|
Infra
|
||
|
InfraOS *InfraOS `json:"os,omitempty"`
|
||
|
Name string `json:"name,omitempty"`
|
||
|
CreateDate timestamp.Timestamp `json:"createDate,omitempty"`
|
||
|
}
|