app_plugin.go 237 B

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