commands.go 287 B

1234567891011
  1. package dtos
  2. type AddCollaboratorCommand struct {
  3. Email string `json:"email" binding:"required"`
  4. }
  5. type SaveDashboardCommand struct {
  6. Id string `json:"id"`
  7. Title string `json:"title"`
  8. Dashboard map[string]interface{} `json:"dashboard"`
  9. }