package dashboards import ( "time" "github.com/grafana/grafana/pkg/models" "github.com/grafana/grafana/pkg/services/user" ) type SaveDashboardDTO struct { OrgId int64 UpdatedAt time.Time User *user.SignedInUser Message string Overwrite bool Dashboard *models.Dashboard } type DashboardSearchProjection struct { ID int64 `xorm:"id"` UID string `xorm:"uid"` Title string Slug string Term string IsFolder bool FolderID int64 `xorm:"folder_id"` FolderUID string `xorm:"folder_uid"` FolderSlug string FolderTitle string SortMeta int64 }