Files
vRp.CD2g_test/exporter/configuration/field.go
T
2023-05-06 12:53:29 +08:00

9 lines
116 B
Go

package configuration
type Field interface {
GetID() int
GetName() string
GetType() FieldType
IsIndex() bool
}