Files
schema/project.go
T
2026-08-28 18:09:16 +02:00

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"`
}