matchrule.go 222 B

1234567891011121314
  1. package matchbase
  2. type UserOption struct {
  3. TableUser int
  4. TotalUser []int
  5. }
  6. type MatchRule struct {
  7. Name string
  8. Desc string
  9. TargetOptions []int
  10. UserOptions []int
  11. PlayTimeOptions []int
  12. }