ms-tester/pkg/models/participant.go

9 lines
175 B
Go
Raw Normal View History

2024-08-17 12:23:35 +00:00
package models
2024-08-20 22:54:46 +00:00
type Participant struct {
Id *int32 `db:"id"`
UserId *int32 `db:"user_id"`
ContestId *int32 `db:"contest_id"`
Name *string `db:"name"`
2024-08-17 12:23:35 +00:00
}