You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
562 B
23 lines
562 B
package model |
|
|
|
// Emoji Emoji |
|
type Emoji struct { |
|
ID int64 `json:"id"` |
|
PackageID int64 `json:"package_id"` |
|
Name string `json:"name"` |
|
URL string `json:"url"` |
|
State int32 `json:"state"` |
|
Sort int32 `json:"sort"` |
|
Remark string `json:"remark"` |
|
} |
|
|
|
// EmojiPackage emoji package |
|
type EmojiPackage struct { |
|
ID int64 `json:"id"` |
|
Name string `json:"name"` |
|
URL string `json:"url"` |
|
State int32 `json:"state"` |
|
Sort int32 `json:"sort"` |
|
Remark string `json:"remark"` |
|
Emojis []*Emoji `json:"emojis"` |
|
}
|
|
|