mirror of https://gitee.com/answerdev/answer.git
23 lines
317 B
Go
23 lines
317 B
Go
package schema
|
|
|
|
// GetThemeOption get label option
|
|
type GetThemeOption struct {
|
|
Label string `json:"label"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
var GetThemeOptions = []*GetThemeOption{
|
|
{
|
|
Label: "Default",
|
|
Value: "default",
|
|
},
|
|
{
|
|
Label: "Black",
|
|
Value: "black",
|
|
},
|
|
{
|
|
Label: "White",
|
|
Value: "white",
|
|
},
|
|
}
|