PromucFlow_constructor/app/server/src/models/components.go

10 lines
130 B
Go
Raw Normal View History

package models
type (
Component struct {
ID int64 `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
}
)