Files
tuugen/db.go
2021-06-16 19:07:54 +01:00

13 lines
271 B
Go

package tuugen
type DataModel struct {
Name string `yaml:"name"`
Properties []DataProperty `yaml:"properties"`
}
type DataProperty struct {
Name string `yaml:"name"`
Type string `yaml:"type"`
AutoIncrement bool `yaml:"autoinc"`
}