ms-tester/pkg/models/contest.go

11 lines
201 B
Go
Raw Normal View History

2024-08-16 11:05:29 +00:00
package models
2024-08-20 22:54:46 +00:00
import "time"
2024-08-16 11:05:29 +00:00
type Contest struct {
2024-08-20 22:54:46 +00:00
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
}