10 lines
187 B
Go
10 lines
187 B
Go
package domain
|
|
|
|
// ID will serve as the fast code since this doesn't need to be secure
|
|
type Ticket struct {
|
|
ID int64
|
|
Outcome []Outcome
|
|
Amount Currency
|
|
TotalOdds float32
|
|
}
|