mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
12 lines
139 B
Go
12 lines
139 B
Go
package scene
|
|
|
|
// SaveModel 保存场景模型
|
|
type SaveModel struct {
|
|
// ID
|
|
ID string
|
|
// 名称
|
|
Name string
|
|
// 数据
|
|
Data string
|
|
}
|