10 lines
318 B
Go
10 lines
318 B
Go
package rules
|
|
|
|
import "synlotto-website/models"
|
|
|
|
var ThunderballPrizeRules = []models.PrizeRule{
|
|
{Game: "Thunderball", MainMatches: 5, BonusMatches: 1, Tier: "Jackpot"},
|
|
{Game: "Thunderball", MainMatches: 5, BonusMatches: 0, Tier: "Second"},
|
|
{Game: "Thunderball", MainMatches: 4, BonusMatches: 1, Tier: "Third"},
|
|
}
|