Refactoring dashboard data access

This commit is contained in:
Torkel Ödegaard
2014-12-22 12:25:08 +01:00
parent 22bf20a135
commit a55a606a55
6 changed files with 99 additions and 114 deletions

View File

@@ -1,11 +0,0 @@
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"`
}