DomainBaseFields
This commit is contained in:
@@ -5,14 +5,12 @@ import (
|
||||
)
|
||||
|
||||
type Domain struct {
|
||||
Context Context
|
||||
MenuMap konstructor.MenuMap
|
||||
DialogMap konstructor.DialogMap
|
||||
Levels []konstructor.Level
|
||||
ObjectTypeMap konstructor.ObjectTypeMap
|
||||
konstructor.DomainBaseFields
|
||||
Context Context
|
||||
}
|
||||
|
||||
func (d *Domain) Init() {
|
||||
d.InitObjectType()
|
||||
d.InitMenu()
|
||||
d.InitDialog()
|
||||
d.InitLevel()
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
package konstructor
|
||||
|
||||
type DomainBaseFields struct {
|
||||
MenuMap MenuMap
|
||||
DialogMap DialogMap
|
||||
Levels []Level
|
||||
ObjectTypeMap ObjectTypeMap
|
||||
}
|
||||
|
||||
type DomainInterface interface {
|
||||
Init()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user