package entitys import ( "ai_scheduler/internal/data/model" "ai_scheduler/internal/data/mongo_model" ) type ChatData struct { ClientInfo *mongo_model.AdvicerClientMongoEntity `json:"clientInfo"` TalkSkill *mongo_model.AdvicerTalkSkillMongoEntity `json:"talkSkill"` ProjectInfo *mongo_model.AdvicerProjectMongoEntity `json:"projectInfo"` AdvicerInfo *model.AiAdviceAdvicerEntity `json:"advicerInfo"` AdvicerVersion *mongo_model.AdvicerVersionMongoEntity `json:"advicerVersion"` }