app_plugin.go 286 B

123456789
  1. package dtos
  2. type AppPlugin struct {
  3. Type string `json:"type"`
  4. Enabled bool `json:"enabled"`
  5. Pinned bool `json:"pinned"`
  6. Module string `json:"module"`
  7. JsonData map[string]interface{} `json:"jsonData"`
  8. }