mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
17 lines
248 B
Go
17 lines
248 B
Go
|
package dashboards
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"github.com/grafana/grafana/pkg/models"
|
||
|
)
|
||
|
|
||
|
type SaveDashboardDTO struct {
|
||
|
OrgId int64
|
||
|
UpdatedAt time.Time
|
||
|
User *models.SignedInUser
|
||
|
Message string
|
||
|
Overwrite bool
|
||
|
Dashboard *models.Dashboard
|
||
|
}
|