AutorÃa | Ultima modificación | Ver Log |
//// AnswerModel.swift// twogetskills//// Created by Efrain Yanez Recanatini on 2/21/22.//import Foundation//, Identifiablestruct AnswerModel: Decodable {var uuid: Stringvar questionUuid: Stringvar text: Stringvar points: Intvar correct: Intinit() {uuid = ""questionUuid = ""text = ""points = 0correct = 0}init(uuid : String, questionUuid : String, text : String, points : Int, correct : Int) {self.uuid = uuidself.questionUuid = questionUuidself.text = textself.points = pointsself.correct = correct}}