probo/models/question.go

8 lines
147 B
Go
Raw Normal View History

2022-06-23 11:25:35 +02:00
package models
type Question struct {
2023-07-12 09:30:56 +02:00
ID string `json:"id"`
Text string `json:"text"`
AnswerIDs []string `json:"answer_ids"`
2022-06-23 11:25:35 +02:00
}