mirror of https://github.com/go-sonic/sonic.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
544 B
Go
31 lines
544 B
Go
2 years ago
|
package property
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
|
||
|
"github.com/go-sonic/sonic/consts"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
IsInstalled = Property{
|
||
|
KeyValue: "is_installed",
|
||
|
DefaultValue: false,
|
||
|
Kind: reflect.Bool,
|
||
|
}
|
||
|
Theme = Property{
|
||
|
KeyValue: "theme",
|
||
|
DefaultValue: consts.DefaultThemeId,
|
||
|
Kind: reflect.String,
|
||
|
}
|
||
|
BirthDay = Property{
|
||
|
KeyValue: "birthday",
|
||
|
DefaultValue: int(0),
|
||
|
Kind: reflect.Int,
|
||
|
}
|
||
|
DefaultMenuTeam = Property{
|
||
|
KeyValue: "default_menu_team",
|
||
|
DefaultValue: "",
|
||
|
Kind: reflect.String,
|
||
|
}
|
||
|
)
|