ms-tester/internal/models/contest.go
2024-08-21 03:54:46 +05:00

11 lines
201 B
Go

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"`
}