Wins.go 178 B

123456789101112131415
  1. package TribalSlot
  2. import (
  3. _ "bet24.com/log"
  4. )
  5. type WinRate struct {
  6. Count int // 数量
  7. Win int // 赔率
  8. }
  9. type Win struct {
  10. SlotID int // SlotID
  11. Rates []WinRate
  12. }