summaryrefslogtreecommitdiff
path: root/jfr_playoff/dto.py
blob: d34b01d5a4e41a7c0614de1072a13f8c6700e39f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Team(object):
    name = ''
    score = 0.0

class Match(object):
    teams = None
    running = 0
    link = None
    winner = None
    loser = None
    winner_matches = None
    loser_matches = None

__all__ = ['Team', 'Match']