question.go 97 B

1234567
  1. package models
  2. type Question struct {
  3. ID string
  4. Text string
  5. AnswerIDs []string
  6. }