mirror of
https://github.com/opbnq-q/nto-cli.git
synced 2025-12-06 18:10:35 +07:00
28 lines
424 B
Go
28 lines
424 B
Go
package model
|
|
|
|
import "go/ast"
|
|
|
|
type Model struct {
|
|
Name string
|
|
Fields []Field
|
|
}
|
|
|
|
type Field struct {
|
|
Name string
|
|
Type ast.Expr
|
|
Tag string
|
|
Metadata FieldMetadata
|
|
}
|
|
|
|
type FieldMetadata struct {
|
|
Hidden bool
|
|
Readonly bool
|
|
Label string
|
|
IsSlice bool
|
|
IsPrimitiveType bool
|
|
IsRelatedModel bool
|
|
RelatedModel string
|
|
Datatype string
|
|
RelatedFields []string
|
|
}
|