10 lines
214 B
Go
10 lines
214 B
Go
package domain
|
|
|
|
// TODO: Adding Outcome Array Once the event is done
|
|
// ID will serve as the fast code since this doesn't need to be secure
|
|
type Ticket struct {
|
|
ID int64
|
|
Amount int32
|
|
TotalOdds int32
|
|
}
|