10 lines
278 B
Go
10 lines
278 B
Go
package schema
|
|
|
|
type Project struct {
|
|
ProjectName string `json:"projectName"`
|
|
Platform string `json:"platfrom"`
|
|
GenerateType int `json:"generateType"`
|
|
Information Information `json:"information"`
|
|
Devices []*Device `json:"devices"`
|
|
}
|