2020-03-27 19:38:44 +08:00

14 lines
175 B
Go

package animation
// EditModel 动画编辑模型
type EditModel struct {
// ID
ID string
// 名称
Name string
// 类别
Category string
// 缩略图
Image string
}