ms-tester/internal/models/contest.go

11 lines
202 B
Go
Raw Permalink Normal View History

2024-10-13 14:01:36 +00:00
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"`
}