QuizModel.swift 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // QuizModel.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 21/09/22.
  6. //
  7. // let quizModel = try? newJSONDecoder().decode(QuizModel.self, from: jsonData)
  8. import Foundation
  9. // MARK: - QuizModel
  10. class QuizModel: Codable {
  11. var id, assessmentId: Int?
  12. var srNo, questionType, question: String?
  13. var optionsOne, optionsTwo, options, correctMatch: [String]?
  14. var marks, negativeMarks, timeInMinutes, status: String?
  15. init(id: Int?, assessmentId: Int?, srNo: String?, questionType: String?, question: String?, options: [String]?, optionsOne: [String]?, optionsTwo: [String]?, correctMatch: [String]?, marks: String?, negativeMarks: String?, timeInMinutes: String?, status: String?) {
  16. self.id = id
  17. self.assessmentId = assessmentId
  18. self.srNo = srNo
  19. self.questionType = questionType
  20. self.question = question
  21. self.options = options
  22. self.optionsOne = optionsOne
  23. self.optionsTwo = optionsTwo
  24. self.correctMatch = correctMatch
  25. self.marks = marks
  26. self.negativeMarks = negativeMarks
  27. self.timeInMinutes = timeInMinutes
  28. self.status = status
  29. }
  30. }