add questions

This commit is contained in:
2026-09-01 01:01:37 +07:00
parent 4431a4d491
commit 69666ee264
23 changed files with 4151 additions and 368 deletions
+11
View File
@@ -0,0 +1,11 @@
package repos
// TeamAnswer — ответ команды на вопрос дела (вопросы живут в сценарии,
// ответы — в таблице team_answers).
type TeamAnswer struct {
TeamId int
QuestionCode string
Text string
// Score — балл, выставленный организатором; nil — ещё не оценено.
Score *int
}