14 lines
241 B
Go
14 lines
241 B
Go
package model
|
|
|
|
type Custimizable interface {
|
|
GetProperties() []Value
|
|
}
|
|
|
|
type CustomozableBase struct {
|
|
Properties []Value `bson:"properties" json:"properties"`
|
|
}
|
|
|
|
func (c *CustomozableBase) GetProperties() []Value {
|
|
return c.Properties
|
|
}
|