mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
14 lines
188 B
Go
14 lines
188 B
Go
package tools
|
|
|
|
// PluginEditModel 插件编辑模型
|
|
type PluginEditModel struct {
|
|
// 编号
|
|
ID string
|
|
// 名称
|
|
Name string
|
|
// 源码
|
|
Source string
|
|
// 简介
|
|
Description string
|
|
}
|