geekai/api/store/vo/chat_item.go
2024-04-28 19:09:26 +08:00

14 lines
313 B
Go

package vo
type ChatItem struct {
BaseVo
UserId uint `json:"user_id"`
Icon string `json:"icon"`
RoleId uint `json:"role_id"`
RoleName string `json:"role_name"`
ChatId string `json:"chat_id"`
ModelId uint `json:"model_id"`
Model string `json:"model"`
Title string `json:"title"`
}