2024-10-23 12:51:41 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type AnimalWithLikeList struct {
|
|
|
|
Animal Animal `json:"animal"`
|
2024-10-23 12:57:53 +08:00
|
|
|
Like bool `json:"like,omitempty"`
|
2024-10-23 12:51:41 +08:00
|
|
|
}
|
2024-11-08 18:57:08 +08:00
|
|
|
|
|
|
|
type AnimalWithNickNameHit struct {
|
|
|
|
Animal Animal `json:"animal"`
|
|
|
|
NickNameHit bool `json:"nick_name_hit,omitempty"`
|
|
|
|
}
|