2020-03-28 08:50:06 +08:00

16 lines
203 B
Go

package scene
// EditModel 场景编辑模型
type EditModel struct {
// ID
ID string
// 名称
Name string
// 类别
Category string
// 缩略图
Image string
// 是否公开
IsPublic bool
}