Future proofing for games.

This commit is contained in:
2025-03-24 22:24:41 +00:00
parent 7303ef7224
commit 4844c34eb1
2 changed files with 19 additions and 17 deletions

View File

@@ -1,14 +1,14 @@
package models
type Draw struct {
ID int
Date string
type ThunderballResult struct {
Id int
DrawDate string
Machine string
Ballset string
Ball1 string
Ball2 string
Ball3 string
Ball4 string
Ball5 string
Thunderball string
Ball1 int
Ball2 int
Ball3 int
Ball4 int
Ball5 int
Thunderball int
}