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,12 +1,14 @@
package models
type MyTicket struct {
ID int
DrawDate string
Ball1 string
Ball2 string
Ball3 string
Ball4 string
Ball5 string
Thunderball string
Id int
GameType string
DrawDate string
Ball1 int
Ball2 int
Ball3 int
Ball4 int
Ball5 int
Bonus1 *int // Optional (nil if not used)
Bonus2 *int // For games like EuroMillions
}