ms-tester/internal/models/subtask.go

9 lines
213 B
Go
Raw Normal View History

2024-08-18 13:51:28 +00:00
package models
type Task struct {
Id *int32 `db:"id"`
ContestId *int32 `db:"contest_id"`
TestgroupId *int32 `db:"testgroup_id"`
TaskId *int32 `db:"task_id"`
}