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
548 B
Go
31 lines
548 B
Go
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: int64(0),
|
|
Kind: reflect.Int64,
|
|
}
|
|
DefaultMenuTeam = Property{
|
|
KeyValue: "default_menu_team",
|
|
DefaultValue: "",
|
|
Kind: reflect.String,
|
|
}
|
|
)
|