12 lines
287 B
Go
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"`
|
|
}
|