mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
16 lines
203 B
Go
16 lines
203 B
Go
package scene
|
|
|
|
// EditModel 场景编辑模型
|
|
type EditModel struct {
|
|
// ID
|
|
ID string
|
|
// 名称
|
|
Name string
|
|
// 类别
|
|
Category string
|
|
// 缩略图
|
|
Image string
|
|
// 是否公开
|
|
IsPublic bool
|
|
}
|