ms-tester/internal/models/contest.go

9 lines
198 B
Go
Raw Normal View History

2024-08-16 11:05:29 +00:00
package models
type Contest struct {
Id *int `db:"id"`
Name *string `db:"name"`
CreatedAt *time.Time `db:"created_at"`
UpdatedAt *time.Time `db:"updated_at"`
2024-08-16 11:05:29 +00:00
}