Files
evening_detective_server/internal/repos/answer.go
T
2026-09-01 01:01:37 +07:00

12 lines
399 B
Go

package repos
// TeamAnswer — ответ команды на вопрос дела (вопросы живут в сценарии,
// ответы — в таблице team_answers).
type TeamAnswer struct {
TeamId int
QuestionCode string
Text string
// Score — балл, выставленный организатором; nil — ещё не оценено.
Score *int
}