From ca21319b59b3188582b70a78965729b9131dd409 Mon Sep 17 00:00:00 2001 From: emkael Date: Tue, 1 Aug 2017 13:41:27 +0200 Subject: Additional properties in DTOs --- jfr_playoff/dto.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'jfr_playoff/dto.py') diff --git a/jfr_playoff/dto.py b/jfr_playoff/dto.py index 9a72a12..bf3e16a 100644 --- a/jfr_playoff/dto.py +++ b/jfr_playoff/dto.py @@ -3,6 +3,7 @@ class Team(object): score = 0.0 class Match(object): + id = None teams = None running = 0 link = None @@ -15,5 +16,6 @@ class Phase(object): title = None link = None matches = [] + running = False __all__ = ['Team', 'Match', 'Phase'] -- cgit v1.2.3