mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
14 lines
328 B
Go
14 lines
328 B
Go
package dtos
|
|
|
|
type Prefs struct {
|
|
Theme string `json:"theme"`
|
|
HomeDashboardId int64 `json:"homeDashboardId"`
|
|
Timezone string `json:"timezone"`
|
|
}
|
|
|
|
type UpdatePrefsCmd struct {
|
|
Theme string `json:"theme"`
|
|
HomeDashboardId int64 `json:"homeDashboardId"`
|
|
Timezone string `json:"timezone"`
|
|
}
|