2024-10-13 14:01:36 +00:00
|
|
|
package models
|
|
|
|
|
2024-10-16 19:34:43 +00:00
|
|
|
import "time"
|
|
|
|
|
2024-10-13 14:01:36 +00:00
|
|
|
type Participant struct {
|
2024-10-16 19:34:43 +00:00
|
|
|
Id *int32 `db:"id"`
|
|
|
|
UserId *int32 `db:"user_id"`
|
|
|
|
ContestId *int32 `db:"contest_id"`
|
|
|
|
Name *string `db:"name"`
|
|
|
|
CreatedAt *time.Time `db:"created_at"`
|
|
|
|
UpdatedAt *time.Time `db:"updated_at"`
|
2024-10-13 14:01:36 +00:00
|
|
|
}
|