7 lines
147 B
Go
7 lines
147 B
Go
package models
|
|
|
|
type Question struct {
|
|
ID string `json:"id"`
|
|
Text string `json:"text"`
|
|
AnswerIDs []string `json:"answer_ids"`
|
|
}
|