11 lines
202 B
Go
11 lines
202 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Contest struct {
|
||
|
Id *int32 `db:"id"`
|
||
|
Title *string `db:"title"`
|
||
|
CreatedAt *time.Time `db:"created_at"`
|
||
|
UpdatedAt *time.Time `db:"updated_at"`
|
||
|
}
|