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