mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
22 lines
332 B
Go
22 lines
332 B
Go
package tools
|
||
|
||
import "time"
|
||
|
||
// PluginModel 插件模型
|
||
type PluginModel struct {
|
||
// 编号
|
||
ID string
|
||
// 名称
|
||
Name string
|
||
// 源码
|
||
Source string
|
||
// 创建时间
|
||
CreateTime time.Time
|
||
// 最后更新时间
|
||
UpdateTime time.Time
|
||
// 简介
|
||
Description string
|
||
// 状态(0-正常,1-禁用,-1删除)
|
||
Status int
|
||
}
|