Files
grafana/pkg/api/dtos/commands.go
T
2014-12-15 21:25:02 +01:00

12 lines
287 B
Go

package dtos
type AddCollaboratorCommand struct {
Email string `json:"email" binding:"required"`
}
type SaveDashboardCommand struct {
Id string `json:"id"`
Title string `json:"title"`
Dashboard map[string]interface{} `json:"dashboard"`
}