mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
8 lines
218 B
Go
8 lines
218 B
Go
package models
|
|
|
|
// OrgMigrationState contains information about the state of an org migration.
|
|
type OrgMigrationState struct {
|
|
OrgID int64 `json:"orgId"`
|
|
CreatedFolders []string `json:"createdFolders"`
|
|
}
|