Files
grafana/pkg/api/dtos/prefs.go

14 lines
328 B
Go
Raw Normal View History

package dtos
type Prefs struct {
Theme string `json:"theme"`
HomeDashboardId int64 `json:"homeDashboardId"`
Timezone string `json:"timezone"`
2016-04-01 17:34:30 -07:00
}
type UpdatePrefsCmd struct {
Theme string `json:"theme"`
HomeDashboardId int64 `json:"homeDashboardId"`
Timezone string `json:"timezone"`
}