summaryrefslogtreecommitdiff
path: root/jfr_playoff/dto.py
diff options
context:
space:
mode:
Diffstat (limited to 'jfr_playoff/dto.py')
-rw-r--r--jfr_playoff/dto.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/jfr_playoff/dto.py b/jfr_playoff/dto.py
index d34b01d..9a72a12 100644
--- a/jfr_playoff/dto.py
+++ b/jfr_playoff/dto.py
@@ -11,4 +11,9 @@ class Match(object):
winner_matches = None
loser_matches = None
-__all__ = ['Team', 'Match']
+class Phase(object):
+ title = None
+ link = None
+ matches = []
+
+__all__ = ['Team', 'Match', 'Phase']