Yimaru-BackEnd/internal/domain/ticket.go

16 lines
275 B
Go

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