Get ticket functionality.

This commit is contained in:
2025-03-26 15:33:40 +00:00
parent 66abdbdd4d
commit f7b54db7c1
4 changed files with 94 additions and 17 deletions

View File

@@ -1,15 +1,19 @@
package models
type MyTicket struct {
Id int
GameType string
DrawDate string
Ball1 int
Ball2 int
Ball3 int
Ball4 int
Ball5 int
Bonus1 *int
Bonus2 *int
Duplicate bool
Id int
GameType string
DrawDate string
Ball1 int
Ball2 int
Ball3 int
Ball4 int
Ball5 int
Ball6 int
Bonus1 *int
Bonus2 *int
PurchaseMethod string
PurchaseDate string
ImagePath string
Duplicate bool
}