Adds isCanceled for tournaments

multistore
Laurent 2 years ago
parent f3909c9055
commit cc06ee8ed5
  1. 2
      PadelClub/Data/Tournament.swift

@ -44,6 +44,7 @@ class Tournament : ModelObject, Storable {
var payment: TournamentPayment? = nil var payment: TournamentPayment? = nil
var additionalEstimationDuration: Int = 0 var additionalEstimationDuration: Int = 0
var isDeleted: Bool = false var isDeleted: Bool = false
var isCanceled: Bool = false
@ObservationIgnored @ObservationIgnored
var navigationPath: [Screen] = [] var navigationPath: [Screen] = []
@ -1118,6 +1119,7 @@ extension Tournament {
case _entryFee = "entryFee" case _entryFee = "entryFee"
case _additionalEstimationDuration = "additionalEstimationDuration" case _additionalEstimationDuration = "additionalEstimationDuration"
case _isDeleted = "isDeleted" case _isDeleted = "isDeleted"
case _isCanceled = "isCanceled"
} }
} }

Loading…
Cancel
Save