26 lines
841 B
Go
26 lines
841 B
Go
package models
|
|
|
|
type AppSettingOption struct {
|
|
Value string `json:"value"`
|
|
Label string `json:"label"`
|
|
}
|
|
|
|
type AppSettingDefinition struct {
|
|
Key string `json:"key"`
|
|
Category string `json:"category"`
|
|
Label string `json:"label"`
|
|
Type string `json:"type"`
|
|
DefaultValue string `json:"defaultValue"`
|
|
Value string `json:"value"`
|
|
Description string `json:"description"`
|
|
Options []AppSettingOption `json:"options"`
|
|
ReadOnly bool `json:"readOnly"`
|
|
}
|
|
|
|
type AppSettingGroup struct {
|
|
Category string `json:"category"`
|
|
Label string `json:"label"`
|
|
Description string `json:"description"`
|
|
Items []AppSettingDefinition `json:"items"`
|
|
}
|