This commit is contained in:
2025-03-24 19:17:39 +00:00
commit cf8cd691dc
10 changed files with 232 additions and 0 deletions

10
models/draw.go Normal file
View File

@@ -0,0 +1,10 @@
package models
type Draw struct {
ID int
Date string
Numbers string
Spend float64
Return float64
ProfitLoss float64
}