11 lines
151 B
Go
11 lines
151 B
Go
package models
|
|
|
|
type Draw struct {
|
|
ID int
|
|
Date string
|
|
Numbers string
|
|
Spend float64
|
|
Return float64
|
|
ProfitLoss float64
|
|
}
|