2020-03-24 22:00:44 +08:00

14 lines
193 B
Go

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