mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
12 lines
149 B
Go
12 lines
149 B
Go
package system
|
|
|
|
// RoleEdit 角色编辑模型
|
|
type RoleEdit struct {
|
|
// 编号
|
|
ID string
|
|
// 名称
|
|
Name string
|
|
// 简介
|
|
Description string
|
|
}
|