adicao de campo played ao firebase no campo das jornadas

This commit is contained in:
2026-04-30 10:24:13 +01:00
parent 85f1a3679f
commit c79c38044c
2 changed files with 43 additions and 0 deletions

View File

@@ -195,4 +195,16 @@ public class Match {
public void setMatchReportUrl(String matchReportUrl) {
this.matchReportUrl = matchReportUrl;
}
private boolean played;
@PropertyName("played")
public boolean isPlayed() {
return played;
}
@PropertyName("played")
public void setPlayed(boolean played) {
this.played = played;
}
}