ms-tester/internal/models/subtask.go
2024-08-21 03:54:46 +05:00

9 lines
183 B
Go

package models
type SubTask struct {
Id *int32 `db:"id"`
ContestId *int32 `db:"contest_id"`
TestgroupId *int32 `db:"testgroup_id"`
TaskId *int32 `db:"task_id"`
}