7 lines
97 B
Go
7 lines
97 B
Go
package models
|
|
|
|
type Question struct {
|
|
ID string
|
|
Text string
|
|
AnswerIDs []string
|
|
}
|