models/contest.go

11 lines
201 B
Go
Raw Normal View History

2024-09-23 18:38:34 +00:00
package models
import "time"
type Contest struct {
Id *int `db:"id"`
Name *string `db:"name"`
CreatedAt *time.Time `db:"created_at"`
UpdatedAt *time.Time `db:"updated_at"`
}