mirror of
https://github.com/cubixle/tuugen.git
synced 2026-04-24 22:34:41 +01:00
13 lines
271 B
Go
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"`
|
|
}
|