mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -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"`
|
|
}
|