models/participant.go

9 lines
175 B
Go
Raw Permalink Normal View History

2024-09-23 18:38:34 +00:00
package models
type Participant struct {
Id *int32 `db:"id"`
UserId *int32 `db:"user_id"`
ContestId *int32 `db:"contest_id"`
Name *string `db:"name"`
}