mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 13:02:12 +08:00
11 lines
333 B
Go
11 lines
333 B
Go
package dtos
|
|
|
|
type AppPlugin struct {
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
Enabled bool `json:"enabled"`
|
|
Pinned bool `json:"pinned"`
|
|
Module string `json:"module"`
|
|
JsonData map[string]interface{} `json:"jsonData"`
|
|
}
|