ms-tester/internal/models/contest.go
2024-08-16 22:16:53 +05:00

9 lines
198 B
Go

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