mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 18:44:54 +08:00
10 lines
286 B
Go
10 lines
286 B
Go
package dtos
|
|
|
|
type AppPlugin struct {
|
|
Type string `json:"type"`
|
|
Enabled bool `json:"enabled"`
|
|
Pinned bool `json:"pinned"`
|
|
Module string `json:"module"`
|
|
JsonData map[string]interface{} `json:"jsonData"`
|
|
}
|