20 lines
292 B
Go
20 lines
292 B
Go
|
package question
|
||
|
|
||
|
import "text/template"
|
||
|
|
||
|
type PartData struct {
|
||
|
Completed bool
|
||
|
PointsWorth int
|
||
|
Solution string
|
||
|
}
|
||
|
|
||
|
type Data struct {
|
||
|
QuestionID string
|
||
|
UserID string
|
||
|
Name string
|
||
|
Text *template.Template
|
||
|
Level Level
|
||
|
Part1 PartData
|
||
|
Part2 PartData
|
||
|
}
|