9 lines
116 B
Go
9 lines
116 B
Go
package configuration
|
|
|
|
type Field interface {
|
|
GetID() int
|
|
GetName() string
|
|
GetType() FieldType
|
|
IsIndex() bool
|
|
}
|