package models
type Question struct {
ID string `json:"id"`
Text string `json:"text"`
AnswerIDs []string `json:"answer_ids"`
}