9 lines
284 B
Go
9 lines
284 B
Go
package plugins
|
|
|
|
// PluginOperations 插件操作集合
|
|
type PluginOperations struct {
|
|
PluginName string `json:"pluginName"` // 插件名称
|
|
PluginType PluginType `json:"pluginType"` // 插件类型
|
|
Operations []*OperationInfo `json:"operations"` // 操作列表
|
|
}
|