mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
12 lines
145 B
Go
12 lines
145 B
Go
package texture
|
|
|
|
// EditModel 贴图编辑模型
|
|
type EditModel struct {
|
|
// ID
|
|
ID string
|
|
// 名称
|
|
Name string
|
|
// 类别
|
|
Category string
|
|
}
|