mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
17 lines
529 B
Go
17 lines
529 B
Go
package dtos
|
|
|
|
type UserPrefs struct {
|
|
Theme string `json:"theme"`
|
|
ThemeDefault string `json:"themeDefault"`
|
|
HomeDashboardId int64 `json:"homeDashboardId"`
|
|
HomeDashboardIdDefault int64 `json:"homeDashboardIdDefault"`
|
|
Timezone string `json:"timezone"`
|
|
TimezoneDefault string `json:"timezoneDefault"`
|
|
}
|
|
|
|
type UpdateUserPrefsCmd struct {
|
|
Theme string `json:"theme"`
|
|
HomeDashboardId int64 `json:"homeDashboardId"`
|
|
Timezone string `json:"timezone"`
|
|
}
|